blob: ac01a8b63e9bb0d4fd6d38ca4b5097305d80e3de (
plain)
1
2
3
4
5
6
7
8
9
10
|
all: fcgiwrap
go: all
../../bin/spawn-fcgi -u admin -f ./fcgiwrap -a 172.16.0.2 -p 14017
fcgiwrap: fcgiwrap.c
gcc -Wall -Werror -pedantic -O2 -g fcgiwrap.c -o fcgiwrap -lfcgi
clean:
-rm fcgiwrap
|