home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / winsock / dt_dll / makefile < prev    next >
Makefile  |  1997-09-21  |  400b  |  19 lines

  1. TARGETOS=WIN95
  2. APPVER=4.0
  3.  
  4. !include <win32.mak>
  5.  
  6. all: dt_dll.dll
  7.  
  8. dt_dll.dll: dt_dll.obj huerror.obj handlers.obj dt_dll.res
  9.     $(link) $(linkdebug) $(dlllflags) \
  10.     -export:WSAPreApiNotify -export:WSAPostApiNotify \
  11.     -out:$*.dll $** $(guilibsdll)
  12.     
  13.  
  14. .cpp.obj:
  15.     $(cc) $(cdebug) $(cflags) -DSTRICT $(cvarsdll) $*.cpp
  16.  
  17. dt_dll.res: dt_dll.rc
  18.     $(rc) $(rcflags) $(rcvars)  dt_dll.rc
  19.