home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
MAKEFILE15
< prev
next >
Wrap
Text File
|
1998-04-27
|
670b
|
31 lines
# Nmake macros for building Windows 32-Bit apps
!MESSAGE Building CgiWrap.Exe...
Proj = CgiWrap
!include <win32.mak>
all: CgiWrap.Exe Install
$(Proj).Exe: $(Proj).Obj
$(link) $(lflags) -base:0x1C000000 -out:$@ $** $(guilibsdll)
# Update the object file if necessary
$(Proj).obj: $(Proj).c
$(cc) $(cflags) $(cvarsdll) $(Proj).c
clean:
-@for %a in (*.exe *.ncb *.obj *.opt *.plg) do del %a
Install:
!IF "$(WWWSCRIPTS)" != ""
!IF "$(WWWROOT)" != ""
copy cgiwrap.exe $(WWWSCRIPTS)\SDK\ISrvMon.exe
copy ..\ISAPIsmp.htm $(WWWROOT)\ISAPIsmp.Htm
copy cgiwrap.htm $(WWWROOT)\SDK\CgiWrap.Htm
!ENDIF
!ENDIF