Small clean ups
[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
6rem $Id: build.bat,v 1.1 1997/09/16 15:36:24 stanleyg Exp $
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
35nmake -f tiny-fcgi.mak
36nmake -f tiny-fcgi2.mak
37
38cd ..
39goto :DONE
40
41:NO_CONFIG
42echo Could not find the file "fcgi_config_x86.h". Aborting.
43
44:DONE