home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / QBAS / DIAMOND1.ZIP / DIAMOND.MAK < prev    next >
Makefile  |  1992-03-07  |  459b  |  20 lines

  1. CFLAGS=-c -AMw -Oagtl -Gsw2 -Zpe -FPi -NT
  2. LFLAGS=/NOD /ALIGN:16
  3.  
  4. all:diamond.dll
  5.  
  6. diamond.obj: diamond.c diamond.h
  7.    cl $(CFLAGS) _TEXT diamond.c
  8.  
  9. diamond2.obj: diamond2.c diamond.h
  10.    cl $(CFLAGS) DLGEDIT diamond2.c
  11.  
  12. diamond.res: diamond.rc
  13.    rc -r diamond.rc
  14.  
  15. diamond.dll: diamond.obj diamond.def diamond2.obj diamond.res
  16.    link $(LFLAGS) libentry diamond diamond2,diamond.dll,,mdllcew libw,diamond.def
  17.    rc diamond.res diamond.dll
  18.  
  19.  
  20.