Remove uneeded code that was causing gcc to warn
[catagits/fcgi2.git] / build.bat
CommitLineData
0198fd3c 1rem
2rem This build script is intended to be run from the root dir that
3rem the FastCGI kit was unpacked in. It is intended to be used for
4rem those that want to run the configure script.
5rem
ffaa0e42 6rem $Id: build.bat,v 1.2 2001/08/27 19:52:49 robs Exp $
0198fd3c 7rem
8rem
9
10echo off
11
12if not exist "config.cache" sh -c "./configure"
13
14
15rem
16rem Build the FastCGI DLL and import library.
17rem
18cd libfcgi
19nmake -f libfcgi.mak
20%1%
21
22rem
23rem Build the cgi-fcgi.exe "shim" application.
24rem
25cd ..\cgi-fcgi
26nmake -f cgi-fcgi.mak
27%1%
28
29rem
30rem Now build the sample applications that have been qualified.
31rem
32cd ..\examples
33nmake -f echo.mak
34nmake -f echo2.mak
0198fd3c 35
36cd ..
37goto :DONE
38
39:NO_CONFIG
40echo Could not find the file "fcgi_config_x86.h". Aborting.
41
42:DONE