home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DAYFIELD.ZIP / TEST < prev    next >
Text File  |  1989-07-31  |  380b  |  21 lines

  1. CFLAGS = -c -ALw -G2sw 
  2. LOPT = $(LDBG) /align:16 /NOD
  3. IFLAGS =
  4.  
  5. .c.obj:
  6.    cl $(CFLAGS) $(IFLAGS) $(OPT) $(CDBG) $(PROTO) $*.c $(PROTOH)
  7.  
  8. test.obj: test.c
  9.  
  10. test.res : test.rc 
  11.    rc -r test.rc
  12.  
  13. test.exe: test.obj test.def 
  14.    link $(LOPT) test \
  15.    ,,,llibce os2 dayfield.lib,test.def
  16.    rc test.res test.exe
  17.  
  18. test.exe: test.res 
  19.         rc test.res test.exe
  20.  
  21.