home *** CD-ROM | disk | FTP | other *** search
/ WindowsWare 2 the Maxx / winmaxx.zip / winmaxx / WIN_NT / PSXRPC.ZIP / PSXAGENT.MK < prev    next >
Makefile  |  1992-11-11  |  464b  |  25 lines

  1. #
  2. #
  3. # Generic Makefile template for building POSIX character mode applications
  4. # under the Windows/NT SDK.
  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=psxagent
  14.  
  15.  
  16. all: $(PROG).exe
  17.  
  18. $(PROG).obj: $(PROG).c
  19.  
  20. $(PROG).exe: $(PROG).obj
  21.   $(cvtobj) $(cvtdebug) *.obj
  22.   $(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs)
  23. .c.obj:
  24.   $(cc) $(cflags) $(psxvars) $(cvars) $(cdebug) $*.c
  25.