File: Makefile.in

package info (click to toggle)
fcgiwrap 1.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 200 kB
  • ctags: 114
  • sloc: ansic: 697; sh: 169; makefile: 39
file content (35 lines) | stat: -rw-r--r-- 841 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
25
26
27
28
29
30
31
32
33
34
35
targetdir = $(DESTDIR)@prefix@@sbindir@
man8dir = $(DESTDIR)@prefix@@datarootdir@@mandir@/man8
datarootdir =

.PHONY:	clean distclean

all: fcgiwrap
install: all
	install -d -m 755 $(targetdir)
	install -m 755 fcgiwrap $(targetdir)
	install -d -m 755 $(man8dir)
	install -m 644 fcgiwrap.8 $(man8dir)
ifneq ("@systemdsystemunitdir@", "")
	install -d -m 755 $(DESTDIR)@systemdsystemunitdir@
	install -m 644 systemd/fcgiwrap.socket $(DESTDIR)@systemdsystemunitdir@
	install -m 644 systemd/fcgiwrap.service $(DESTDIR)@systemdsystemunitdir@
endif

LDLIBS = -lfcgi @systemd_LIBS@
CFLAGS = @AM_CFLAGS@

fcgiwrap: fcgiwrap.c

#>+ 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 $(man8dir)/fcgiwrap.8