home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / ras / winnt / rashost / makefile next >
Makefile  |  1996-03-18  |  420b  |  18 lines

  1.  
  2. TARGETOS=WINNT
  3. !include <win32.mak>
  4.  
  5. all: RASHOST.dll
  6.  
  7. rashost.obj: rashost.cpp rashost.h
  8.     $(cc) $(cdebug) $(cflags) $(cvarsdll) rashost.cpp
  9.  
  10. rashost.res: rashost.rc
  11.     $(rc) $(rcvars) -r -fo rashost.res rashost.rc
  12.  
  13. rashost.dll: rashost.obj rashost.def rashost.res
  14.     $(link) $(linkdebug) $(dlllflags) \
  15.     -def:rashost.def   \
  16.     -out:rashost.dll    \
  17.     rashost.obj rashost.res $(guilibsdll)
  18.