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