aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@bsdfrog.org>2014-08-16 02:59:06 +0800
committerAntoine Jacoutot <ajacoutot@bsdfrog.org>2014-08-16 02:59:06 +0800
commit5efd4ba3c37bd4b0c09889514df31d4788047aec (patch)
tree88b5038e4f9faefa484740840161ad5ce27a69df
parent904d744df98f63a70ec8832764bdfba1adda073a (diff)
downloadsystembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.tar
systembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.tar.gz
systembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.tar.bz2
systembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.tar.lz
systembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.tar.xz
systembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.tar.zst
systembsd-5efd4ba3c37bd4b0c09889514df31d4788047aec.zip
Revamp the Makefile.
Create the service files as part of the build so that they respect BINDIR. ok Ian
-rw-r--r--Makefile123
-rw-r--r--conf/conf/org.freedesktop.hostname1.service.in (renamed from conf/service-files/org.freedesktop.hostname1.service)2
-rw-r--r--conf/conf/org.freedesktop.locale1.service.in (renamed from conf/service-files/org.freedesktop.locale1.service)2
-rw-r--r--conf/conf/org.freedesktop.login1.service.in (renamed from conf/service-files/org.freedesktop.login1.service)2
-rw-r--r--conf/conf/org.freedesktop.timedate1.service.in (renamed from conf/service-files/org.freedesktop.timedate1.service)2
5 files changed, 74 insertions, 57 deletions
diff --git a/Makefile b/Makefile
index 236fd3c..d5165a6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,42 +1,63 @@
.PHONY: all
-CC=/usr/bin/cc
-CFLAGS=-Wall -Wextra -Werror -std=c89
-DEBUGF=-O0 -g
-
-LINKGN=bin/obj/hostnamed-gen.o bin/obj/localed-gen.o bin/obj/timedated-gen.o bin/obj/logind-gen.o
-LINKHN=bin/systemd-hostnamed bin/systemd-localed bin/systemd-timedated bin/systemd-logind
+CC?= /usr/bin/cc
+CFLAGS+= -Wall -Wextra -Werror -std=c89
+
+DEBUG= 1
+.ifdef DEBUG
+CFLAGS+= -O0 -g
+.endif
+
+SANITY= 1
+.ifdef SANITY
+CFLAGS+= -Wno-unused-variable -Wno-unused-parameter # -Wno-comment
+.endif
+
+PREFIX?= /usr/local
+BINDIR= $(PREFIX)/libexec
+SYSCONFDIR?= /etc
+
+INSTALL_PROGRAM= install -c -s -o root -g bin -m 555
+INSTALL_PROGRAM_DIR= install -d -o root -g bin -m 755
+INSTALL_DATA= install -c -o root -g bin -m 444
+INSTALL_DATA_DIR= install -d -o root -g bin -m 755
+
+LINKGN= bin/obj/hostnamed-gen.o \
+ bin/obj/localed-gen.o \
+ bin/obj/timedated-gen.o \
+ bin/obj/logind-gen.o
+
+LINKHN= bin/systemd-hostnamed \
+ bin/systemd-localed \
+ bin/systemd-timedated \
+ bin/systemd-logind
+
+DBUS_SERVICES= org.freedesktop.hostname1.service \
+ org.freedesktop.locale1.service \
+ org.freedesktop.login1.service \
+ org.freedesktop.timedate1.service
GLIBEF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0 polkit-agent-1`
GLIBOF=`pkg-config --cflags glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0 polkit-agent-1`
-SANITY=-Wno-unused-variable -Wno-unused-parameter # -Wno-comment
-
-PREFIX=/usr/local
-LIBDIR=$(PREFIX)/lib
-OUR_LIBDIR=$(LIBDIR)/systemd-compat
-SYSCONFDIR=/etc
+SRCDIR= src
+CONFDIR= conf
+POLICYDIR= $(CONFDIR)/sysbus-policy
+ISPECTDIR= $(CONFDIR)/introspect-xml
+SERVICEFDIR= $(CONFDIR)/service-files
-SRCDIR=src
-CONFDIR=conf
-POLICYDIR=$(CONFDIR)/sysbus-policy
-ISPECTDIR=$(CONFDIR)/introspect-xml
-SERVICEFDIR=$(CONFDIR)/service-files
+INTFDIR= $(SRCDIR)/interfaces
-INTFDIR=$(SRCDIR)/interfaces
+DBUS_POLICYDIR= $(SYSCONFDIR)/dbus-1/system.d
+DBUS_CONFIGDIR= $(PREFIX)/share/dbus-1/system-services
-DBUS_POLICYDIR=$(SYSCONFDIR)/dbus-1/system.d
-DBUS_CONFIGDIR=$(PREFIX)/share/dbus-1/system-services
-
-INVOKE_GENFILE_SCRIPT=./scripts/gen-gdbus-interfaces.sh
+INVOKE_GENFILE_SCRIPT= \
+ ./scripts/gen-gdbus-interfaces.sh
all: build
-build: _build_interface_objs_debug
- $(CC) -o bin/out.bin $(DEBUGF) $(GLIBEF) $(SANITY) $(SRCDIR)/main.c
-
-publish: _build_interface_objs
- $(CC) -o bin/out.bin $(CFLAGS) $(GLIBEF) $(SANITY) $(SRCDIR)/main.c
+build: _build_interface_objs
+ $(CC) -o bin/out.bin $(CFLAGS) $(GLIBEF) $(SRCDIR)/main.c
clean:
find ./bin -type f -exec rm {} \;
@@ -45,28 +66,16 @@ clean:
install: _install_conf _install_interface_binaries
_build_interface_objs: _build_genfile_objs
- $(CC) -o bin/systemd-hostnamed $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/hostnamed/hostnamed.c bin/obj/hostnamed-gen.o
- $(CC) -o bin/systemd-localed $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/localed/localed.c bin/obj/localed-gen.o
- $(CC) -o bin/systemd-timedated $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/timedated/timedated.c bin/obj/timedated-gen.o
- $(CC) -o bin/systemd-logind $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/logind/logind.c bin/obj/logind-gen.o
-
-_build_interface_objs_debug: _build_genfile_objs_debug
- $(CC) -o bin/systemd-hostnamed $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/hostnamed/hostnamed.c bin/obj/hostnamed-gen.o
- $(CC) -o bin/systemd-localed $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/localed/localed.c bin/obj/localed-gen.o
- $(CC) -o bin/systemd-timedated $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/timedated/timedated.c bin/obj/timedated-gen.o
- $(CC) -o bin/systemd-logind $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/logind/logind.c bin/obj/logind-gen.o
+ $(CC) -o bin/systemd-hostnamed $(CFLAGS) $(GLIBEF) $(INTFDIR)/hostnamed/hostnamed.c bin/obj/hostnamed-gen.o
+ $(CC) -o bin/systemd-localed $(CFLAGS) $(GLIBEF) $(INTFDIR)/localed/localed.c bin/obj/localed-gen.o
+ $(CC) -o bin/systemd-timedated $(CFLAGS) $(GLIBEF) $(INTFDIR)/timedated/timedated.c bin/obj/timedated-gen.o
+ $(CC) -o bin/systemd-logind $(CFLAGS) $(GLIBEF) $(INTFDIR)/logind/logind.c bin/obj/logind-gen.o
_build_genfile_objs: _generate_genfiles
- $(CC) -o bin/obj/hostnamed-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/hostnamed/hostnamed-gen.c
- $(CC) -o bin/obj/localed-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/localed/localed-gen.c
- $(CC) -o bin/obj/timedated-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/timedated/timedated-gen.c
- $(CC) -o bin/obj/logind-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/logind/logind-gen.c
-
-_build_genfile_objs_debug: _generate_genfiles
- $(CC) -o bin/obj/hostnamed-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/hostnamed/hostnamed-gen.c
- $(CC) -o bin/obj/localed-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/localed/localed-gen.c
- $(CC) -o bin/obj/timedated-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/timedated/timedated-gen.c
- $(CC) -o bin/obj/logind-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/logind/logind-gen.c
+ $(CC) -o bin/obj/hostnamed-gen.o $(CFLAGS) $(GLIBOF) -c $(INTFDIR)/hostnamed/hostnamed-gen.c
+ $(CC) -o bin/obj/localed-gen.o $(CFLAGS) $(GLIBOF) -c $(INTFDIR)/localed/localed-gen.c
+ $(CC) -o bin/obj/timedated-gen.o $(CFLAGS) $(GLIBOF) -c $(INTFDIR)/timedated/timedated-gen.c
+ $(CC) -o bin/obj/logind-gen.o $(CFLAGS) $(GLIBOF) -c $(INTFDIR)/logind/logind-gen.c
_generate_genfiles:
$(INVOKE_GENFILE_SCRIPT) hostnamed
@@ -74,11 +83,19 @@ _generate_genfiles:
$(INVOKE_GENFILE_SCRIPT) timedated
$(INVOKE_GENFILE_SCRIPT) logind
-_install_conf:
- cp $(POLICYDIR)/*-dbus.conf $(DBUS_POLICYDIR)/
- cp $(SERVICEFDIR)/*.service $(DBUS_CONFIGDIR)/
- cp $(CONFDIR)/systemd_compat.conf $(SYSCONFDIR)/
+_generate_servicefiles:
+ for svc in $(DBUS_SERVICES); do \
+ sed -e 's,@BINDIR@,${BINDIR},' $(SERVICEFDIR)/$$svc.in > $(SERVICEFDIR)/$$svc; \
+ done
+
+_install_conf: _generate_servicefiles
+ ${INSTALL_DATA_DIR} $(DESTDIR)$(DBUS_POLICYDIR)
+ ${INSTALL_DATA_DIR} $(DESTDIR)$(DBUS_CONFIGDIR)
+ ${INSTALL_DATA_DIR} $(DESTDIR)$(SYSCONFDIR)
+ ${INSTALL_DATA} $(POLICYDIR)/*-dbus.conf $(DESTDIR)$(DBUS_POLICYDIR)/
+ ${INSTALL_DATA} $(SERVICEFDIR)/*.service $(DESTDIR)$(DBUS_CONFIGDIR)/
+ ${INSTALL_DATA} $(CONFDIR)/systemd_compat.conf $(DESTDIR)$(SYSCONFDIR)/
_install_interface_binaries: $(LINKHN)
- mkdir -p $(OUR_LIBDIR)
- cp bin/systemd-* $(OUR_LIBDIR)/
+ ${INSTALL_PROGRAM_DIR} $(DESTDIR)$(BINDIR)
+ ${INSTALL_PROGRAM} bin/systemd-* $(DESTDIR)$(BINDIR)/
diff --git a/conf/service-files/org.freedesktop.hostname1.service b/conf/conf/org.freedesktop.hostname1.service.in
index 4ab56a7..0d3abf0 100644
--- a/conf/service-files/org.freedesktop.hostname1.service
+++ b/conf/conf/org.freedesktop.hostname1.service.in
@@ -1,4 +1,4 @@
[D-BUS Service]
Names=org.freedesktop.hostname1i
-Exec=/usr/local/bin/systemd-compat/systemd-hostnamed
+Exec=@BINDIR@/systemd-hostnamed
User=root
diff --git a/conf/service-files/org.freedesktop.locale1.service b/conf/conf/org.freedesktop.locale1.service.in
index b85f8b9..25b39f7 100644
--- a/conf/service-files/org.freedesktop.locale1.service
+++ b/conf/conf/org.freedesktop.locale1.service.in
@@ -1,4 +1,4 @@
[D-BUS Service]
Names=org.freedesktop.locale1
-Exec=/usr/local/bin/systemd-compat/systemd-localed
+Exec=@BINDIR@/systemd-localed
User=root
diff --git a/conf/service-files/org.freedesktop.login1.service b/conf/conf/org.freedesktop.login1.service.in
index 834f17b..fac4a3a 100644
--- a/conf/service-files/org.freedesktop.login1.service
+++ b/conf/conf/org.freedesktop.login1.service.in
@@ -1,4 +1,4 @@
[D-BUS Service]
Names=org.freedesktop.login1
-Exec=/usr/local/bin/systemd-compat/systemd-logind
+Exec=@BINDIR@/systemd-logind
User=root
diff --git a/conf/service-files/org.freedesktop.timedate1.service b/conf/conf/org.freedesktop.timedate1.service.in
index 096d622..29cfea6 100644
--- a/conf/service-files/org.freedesktop.timedate1.service
+++ b/conf/conf/org.freedesktop.timedate1.service.in
@@ -1,4 +1,4 @@
[D-BUS Service]
Names=org.freedesktop.timedate1
-Exec=/usr/local/bin/systemd-compat/systemd-timedated
+Exec=@BINDIR@/systemd-timedated
User=root