home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / MONTE.ZIP / SUBALLOC / MAKEFILE next >
Text File  |  1993-03-05  |  291b  |  17 lines

  1. # makefile for SUBALLOC.EXE
  2. cc   = icc /c /gd- /se /re /ss /ms /gm+ /ti+ /q+ /kb+
  3. link = link386 /nod /cod /map /pmtype:vio
  4. libs = dde4mbs os2386
  5.  
  6. all: SUBALLOC.exe
  7.  
  8. SUBALLOC.exe: SUBALLOC.obj
  9.   $(link)  SUBALLOC,,, $(libs);
  10.  
  11. SUBALLOC.obj: SUBALLOC.c
  12.   $(cc) SUBALLOC.c
  13.  
  14.  
  15.  
  16.  
  17.