home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rras / eap / makefile < prev    next >
Encoding:
Makefile  |  1997-09-11  |  236 b   |  12 lines

  1. !include <win32.mak>
  2.  
  3. all: eap.dll
  4.  
  5. .c.obj:
  6.   $(cc) $(cdebug) $(cflags) $(cvars) -DUNICODE $*.c
  7.  
  8. eap.dll: eap.obj
  9.     $(link) $(linkdebug) $(dlllflags) \
  10.       $** -out:eap.dll -def:eap.def   \
  11.       $(conlibsdll) user32.lib
  12.