home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / smallinf.zip / makefile next >
Makefile  |  1994-05-16  |  235b  |  10 lines

  1. CFLAGS=/Zp1 /G2 /W3 /c
  2. CC=cl $(CFLAGS)
  3.  
  4. all: smallinf.exe
  5.  
  6. smallinf.obj:  smallinf.c makefile
  7.    $(CC) smallinf.c
  8. smallinf.exe: smallinf.obj
  9.    link smallinf.obj/ST:8192/MAP/NOE/NOD:slibce,smallinf.exe,nul,slibce.lib,smallinf
  10.