blob: a93d0241a743a5323177fad6459cc4bdcbdf0497 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
DESTDIR =
#prefix = /usr/local
prefix = /usr
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
#sbindir = $(exec_prefix)/sbin
sbindir = $(bindir)
#libexecdir = $(exec_prefix)/libexec
libexecdir = $(exec_prefix)/lib
#sysconfdir = $(prefix)/etc
sysconfdir = /etc/conf.d
systemddir = $(prefix)/lib/systemd/system
pkglibexecdir = $(libexecdir)/parabolaweb-utils
pkgconffile = $(sysconfdir)/parabolaweb
CFLAGS += -std=c99 -Wall -Wextra -Werror -Wno-unused-parameter
CPPFLAGS += -DSCRIPT_LOCATION='"$(pkglibexecdir)/parabolaweb-changepassword.real"'
targets = \
$(sbindir)/parabolaweb-changepassword \
$(sbindir)/parabolaweb-fcgi \
$(sbindir)/parabolaweb-reporead-inotify \
$(sbindir)/parabolaweb-update \
$(pkglibexecdir)/parabolaweb-changepassword.real \
$(systemddir)/parabolaweb.service \
$(systemddir)/parabolaweb-reporead-inotify.service
all: PHONY depends.txt $(notdir $(targets)) parabolaweb.conf
install: PHONY $(addprefix $(DESTDIR),$(targets) $(pkgconffile))
uninstall: PHONY
$(RM) $(addprefix $(DESTDIR),$(targets) $(pkgconffile))
rmdir -p -- $(wildcard $(sort $(dir $(addprefix $(DESTDIR),$(targets) $(pkgconffile))))) 2>/dev/null || true
clean: PHONY
$(RM) $(notdir $(targets)) depends.txt
# Pattern rules
%: %.in
sed -e 's|@sbindir@|$(sbindir)|' -e 's|@pkgconffile@|$(pkgconffile)|' < $< > $@
$(DESTDIR)$(sbindir)/%: %
install -Dm755 $< $@
$(DESTDIR)$(pkglibexecdir)/%: %
install -Dm755 $< $@
$(DESTDIR)$(systemddir)/%.service: %.service
install -Dm644 $< $@
# Specific rules
depends.txt: list-depends depends_static.txt
./$< > $@
$(DESTDIR)$(sbindir)/parabolaweb-changepassword: parabolaweb-changepassword
install -Dm4755 $< $@
$(DESTDIR)$(pkgconffile): parabolaweb.conf
install -Dm644 $< $@
.DELETE_ON_ERROR:
.PHONY: PHONY
|