home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Varie / server / makefile.bak < prev    next >
Encoding:
Makefile  |  1995-12-04  |  465 b   |  21 lines

  1.  
  2. SRC= cgiwrap.c
  3. OBJ= cgiwrap.obj
  4. EXE = cgiwrap.exe
  5. LIBS = user32.lib
  6.  
  7. DEBUG =  #-Zi -Fd"$*.pdb"  # Debug flags for the compiler
  8. LDEBUG =  # -debug -debugtype:cv # debug flags for the linker
  9. INETSDK_INCL = J:\server\include # path to httpext.h
  10.  
  11. .c.obj:
  12.     cl -W3 $(DEBUG) -nologo -I$(INETSDK_INCL) -c $<
  13.  
  14. all:$(EXE)
  15.  
  16. cgiwrap.obj:cgiwrap.c $(HDR)
  17.  
  18. cgiwrap.exe:$(OBJ)
  19.     link $(LDEBUG) -nologo -incremental:yes $(OBJ) $(LIBS) -pdb:$*.pdb  -out:$(EXE)
  20.  
  21.