home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sysmgmt / lsapi / makefile < prev    next >
Makefile  |  1996-04-30  |  385b  |  15 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <win32.mak>
  4.  
  5. all: simple.exe challeng.exe
  6.  
  7. .c.obj:
  8.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  9.  
  10. simple.exe: simple.obj
  11.   $(link) $(ldebug) $(conflags) -out:simple.exe simple.obj $(conlibs) lsapi32.lib
  12.  
  13. challeng.exe: challeng.obj md4c.obj
  14.   $(link) $(ldebug) $(conflags) -out:challeng.exe $** $(conlibs) lsapi32.lib
  15.