summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 7a6904bc01c8f8590e321323c8b895fab18f1a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
targetdir = $(DESTDIR)@prefix@@sbindir@

.PHONY:	clean distclean

all: fcgiwrap
install: all
	install -d -m 755 $(targetdir)
	install -m 755 fcgiwrap $(targetdir)

fcgiwrap: fcgiwrap.c
	@CC@ @AM_CFLAGS@ fcgiwrap.c -o fcgiwrap -lfcgi

#>+ 21
clean:
	-rm -f fcgiwrap

#>+ 21
distclean: clean
	-rm -rf config.log config.status autom4te.cache
	-rm -f configure Makefile

#>+ 21
uninstall:
	rm -f $(targetdir)/fcgiwrap