home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / sdu / sample1.mak < prev    next >
Text File  |  1997-03-14  |  633b  |  29 lines

  1. # Makefile for NMAKE utility to build SAMPLE1.EXE.
  2. #
  3. # Change the pathes for Compiler and Linker to run the makefile
  4. # with 'NMAKE SAMPLE1.MAK'
  5.  
  6. .SUFFIXES:
  7.  
  8. .SUFFIXES: .c
  9.  
  10. SAMPLE1.EXE:  \
  11.   SAMPLE1.OBJ \
  12.   SAMPLE1.MAK
  13.    @REM @<<SAMPLE1.@0
  14.      /BATCH /CO /MAP /NOD /STACK:10000 /PM:VIO /DE +
  15.      SAMPLE1.OBJ,
  16.      SAMPLE1.EXE,
  17.      SAMPLE1.MAP,
  18.      L:\TOOLKT20CPP\OS2LIB\OS2386.LIB+L:\IBMCPP\LIB\DDE4MBS.LIB,
  19.      SAMPLE1.DEF
  20.      ;
  21. <<
  22.    L:\TOOLKT20\OS2BIN\LINK386.EXE @SAMPLE1.@0
  23.  
  24. {.}.c.obj:
  25.     L:\IBMCPP\BIN\ICC.EXE /Ss /Ti /Gm /Sm /IN:\DDC2\SRCREF /C $<
  26.  
  27. SAMPLE1.OBJ:  SAMPLE1.C \
  28.    SAMPLE1.MAK
  29.