File: Makefile.in

package info (click to toggle)
fcgiwrap 1.0-1%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 108 kB
  • ctags: 52
  • sloc: ansic: 538; sh: 162; makefile: 21
file content (24 lines) | stat: -rw-r--r-- 414 bytes parent folder | download
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