summaryrefslogtreecommitdiff
path: root/Makefile
blob: 00fb6599f7a887c41f798eeb55f8d103db5e0dc4 (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
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 = \
	$(DESTDIR)$(sbindir)/parabolaweb-changepassword \
	$(DESTDIR)$(sbindir)/parabolaweb-fcgi \
	$(DESTDIR)$(sbindir)/parabolaweb-reporead-inotify \
	$(DESTDIR)$(sbindir)/parabolaweb-update \
	$(DESTDIR)$(pkglibexecdir)/parabolaweb-changepassword.real \
	$(DESTDIR)$(systemddir)/parabolaweb.service \
	$(DESTDIR)$(systemddir)/parabolaweb-reporead-inotify.service

all: depends.txt $(notdir $(targets)) parabolaweb.conf

install: $(targets) $(sysconffile)

# 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 -Dm6755 $< $@

$(DESTDIR)(pkgconffile): parabolaweb.conf
	install -Dm644 $< $@

.DELETE_ON_ERROR: