home *** CD-ROM | disk | FTP | other *** search
/ TestDrive Super Store 2.3 / TESTDRIVE_2.ISO / realizer / custctrl / cclib1. next >
Encoding:
Text File  |  1992-09-30  |  441 b   |  19 lines

  1. all: cclib1.exe
  2.  
  3. DLLFLAGS=-c -u -Asnw -Gsw -Os -Zep -W2 -FPi -Zi
  4.  
  5. cclib1.obj: cclib1.c
  6.    cl $(DLLFLAGS) cclib1.c
  7.    
  8. cclib1.exe: libentry.obj cclib1.obj cclib1.def
  9.     type NUL > cclib1.res
  10.     echo libentry+cclib1+gettime > t.lnk
  11.     echo cclib1.exe/align:16 >> t.lnk
  12.     echo cclib1/map/li >> t.lnk
  13.     echo sdllcew+slibcew+libw/NOD/CO >> t.lnk
  14.     echo cclib1.def >> t.lnk
  15.     link @t.lnk
  16.     del t.lnk > NUL
  17.     rc -v cclib1.res
  18.     del cclib1.res
  19.