home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / WINLBSRC.ZIP / WINDLL.MAK < prev    next >
Encoding:
Text File  |  1992-06-10  |  710 b   |  34 lines

  1. windll: bc30rtl.dll
  2.  
  3. .PATH.exe = ..\lib
  4. .PATH.obj = d
  5.  
  6. OBJECTS =        \
  7.     instdata.obj \
  8.     rtldata.obj  \
  9.     rtlmain.obj
  10.  
  11. OPTIONS = -WDE -ml -1 -D_RTLDLL -lC -c-
  12.  
  13. bc30rtl.dll : $(OBJECTS)
  14.     copy bcrtl.def $(.PATH.exe)\bc30rtl.def
  15.     cd $(.PATH.obj)
  16.     $(TC) @&&!
  17.     $(OPTIONS) -e..\$(.PATH.exe)\bc30rtl.dll -L..\..\..\lib
  18.     $(OBJECTS)
  19. !   @..\dllmak.rsp ..\$(.PATH.exe)\crtldll.lib
  20.     cd ..\..\lib
  21.     implib temp.lib bc30rtl.dll
  22.     $(TLIB) crtldll.lib +temp.lib
  23.     del temp.lib
  24.     del crtldll.bak
  25.     del bc30rtl.def
  26.     cd ..\winlib
  27.     del *.rsp
  28.  
  29. .cpp.obj:
  30.     $(TC) $(OPTIONS) -n$(.PATH.obj) -c {$< }
  31.  
  32. .c.obj:
  33.     $(TC) $(OPTIONS) -n$(.PATH.obj) -c {$< }
  34.