home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-11-10 | 462 b | 24 lines |
- #
- #
- # Generic Makefile template for building character mode applications under
- # the Windows/NT PDK. (Prerelease Development Kit)
- #
- # By John Richardson
- #
-
- !include <ntwin32.mak>
-
-
- # Set the program name you want to build here
- PROG=win32srv
-
-
- all: $(PROG).exe
-
- $(PROG).obj: $(PROG).c
- $(cc) $(cflags) $(cvars) $(PROG).c
- $(cvtobj) $(PROG).obj
-
- $(PROG).exe: $(PROG).obj
- $(link) $(conflags) -out:$(PROG).exe $(PROG).obj $(conlibs)
-