home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-04 | 465 b | 21 lines |
-
- SRC= cgiwrap.c
- OBJ= cgiwrap.obj
- EXE = cgiwrap.exe
- LIBS = user32.lib
-
- DEBUG = #-Zi -Fd"$*.pdb" # Debug flags for the compiler
- LDEBUG = # -debug -debugtype:cv # debug flags for the linker
- INETSDK_INCL = J:\server\include # path to httpext.h
-
- .c.obj:
- cl -W3 $(DEBUG) -nologo -I$(INETSDK_INCL) -c $<
-
- all:$(EXE)
-
- cgiwrap.obj:cgiwrap.c $(HDR)
-
- cgiwrap.exe:$(OBJ)
- link $(LDEBUG) -nologo -incremental:yes $(OBJ) $(LIBS) -pdb:$*.pdb -out:$(EXE)
-
-