summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: bd0da97dc1e43626a5bfdca0e2580e1bc77c5d03 (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 config.h config.h.in

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