home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / ipc / namepipe / console / makefile next >
Encoding:
Makefile  |  1995-10-27  |  220 b   |  13 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: nmpipe.exe
  4.  
  5. nmpipe.obj: $*.c
  6.  
  7. .c.obj:
  8.   $(cc) $(cflags) $(cdebug) $(cvarsdll) $*.c
  9.  
  10. .obj.exe:
  11.   $(link) $(ldebug) $(conlflags) -out:$*.exe $*.obj $(conlibsdll) \
  12.       user32.lib
  13.