home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-04 | 384 b | 20 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- !MESSAGE Building CgiWrap.Exe...
- !MESSAGE
-
- Proj = CgiWrap
-
- !include <win32.mak>
-
- $(Proj).Exe: $(Proj).Obj
- $(link) $(dlllflags) -base:0x1C000000 -out:$@ $** $(guilibsdll)
-
- # Update the object file if necessary
-
- $(Proj).obj: $(Proj).c
- $(cc) $(cflags) $(cvarsdll) $(Proj).c
-
- clean:
- del $(Proj).Exe $(Proj).Obj
-