-
Notifications
You must be signed in to change notification settings - Fork 134
/
Makefile.in
35 lines (28 loc) · 828 Bytes
/
Makefile.in
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@@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