home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / picmas.zip / SAMPLE.MAK < prev    next >
Makefile  |  1993-05-05  |  396b  |  20 lines

  1.  
  2. CFLAGS = -B1 c1l.exe -c -MT -G2s -Zdeip -ALu -W3 -Od $(DEFINES)
  3. LFLAGS = /align:16 /M /CO /nod
  4.  
  5.  
  6. .c.obj:
  7.     cl $(CFLAGS) $*.c >$*.err
  8.     type $*.err
  9.  
  10.  
  11. sample.exe : sample.obj sample.res
  12.         LINK $(LFLAGS) sample.obj,,,llibcmt + os2 + ef16ms.lib, sample.def;
  13.         rc sample.res
  14.  
  15. sample.obj : sample.c sample.h
  16.  
  17. sample.res : sample.rc sample.h
  18.         rc -r sample.rc
  19.  
  20.