home *** CD-ROM | disk | FTP | other *** search
/ WindowsWare 2 the Maxx / winmaxx.zip / winmaxx / WIN_NT / PSXRPC.ZIP / PSXCLT.MK < prev    next >
Makefile  |  1992-11-20  |  498b  |  27 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=psxclt
  14.  
  15.  
  16. all: $(PROG).exe
  17.  
  18. $(PROG).obj: $(PROG).c
  19.  
  20. rpcclt.obj:  rpcclt.c
  21.  
  22. $(PROG).exe: $(PROG).obj rpcclt.obj
  23.   $(cvtobj) $(cvtdebug) *.obj
  24.   $(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs)
  25. .c.obj:
  26.   $(cc) $(cflags) $(psxvars) $(cvars) $(cdebug) $*.c
  27.