home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-11-20 | 498 b | 27 lines |
- #
- #
- # Generic Makefile template for building POSIX character mode applications
- # under the Windows/NT SDK.
- #
- # By John Richardson
- #
-
- !include <ntwin32.mak>
-
-
- # Set the program name you want to build here
- PROG=psxclt
-
-
- all: $(PROG).exe
-
- $(PROG).obj: $(PROG).c
-
- rpcclt.obj: rpcclt.c
-
- $(PROG).exe: $(PROG).obj rpcclt.obj
- $(cvtobj) $(cvtdebug) *.obj
- $(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs)
- .c.obj:
- $(cc) $(cflags) $(psxvars) $(cvars) $(cdebug) $*.c
-