home *** CD-ROM | disk | FTP | other *** search
/ WindowsWare 2 the Maxx / winmaxx.zip / winmaxx / WIN_NT / PSXRPC.ZIP / WIN32SRV.MK < prev   
Makefile  |  1992-11-10  |  462b  |  24 lines

  1. #
  2. #
  3. # Generic Makefile template for building character mode applications under
  4. # the Windows/NT PDK. (Prerelease Development Kit)
  5. #
  6. # By John Richardson
  7. #
  8.  
  9. !include <ntwin32.mak>
  10.  
  11.  
  12. # Set the program name you want to build here
  13. PROG=win32srv
  14.  
  15.  
  16. all: $(PROG).exe
  17.  
  18. $(PROG).obj: $(PROG).c
  19.     $(cc) $(cflags) $(cvars) $(PROG).c
  20.     $(cvtobj) $(PROG).obj
  21.  
  22. $(PROG).exe: $(PROG).obj
  23.     $(link) $(conflags) -out:$(PROG).exe $(PROG).obj $(conlibs)
  24.