untouched genfiles now work with linking system, revert localed-gen.c
[systembsd.git] / Makefile
CommitLineData
496f5d66 1.PHONY: all
9fd3f859 2
a0e7ba5b 3CFLAGS=-Wall -Wextra -Werror -std=c89
043bd2ed 4DEBUGF=-O0 -g
496f5d66 5SRCDIR=src
b7f8df44 6INTFDIR=$(SRCDIR)/interfaces
10aafb89 7SANITY=-Wno-unused-variable -Wno-unused-parameter # -Wno-comment
9fd3f859 8
ed99526e 9GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0`
32a2d8e2 10
10aafb89 11all: build
12
13build:
c3b84b0a 14 gcc -o bin/out.bin $(DEBUGF) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
15
c09a09bf 16build-interface-binaries:
17 gcc -o bin/systemd-hostnamed-handler $(DEBUGF) $(GLIBF) $(SANITY) -D COMPILE_HOSTNAMED_BINARY $(SRCDIR)/main.c
18 gcc -o bin/systemd-localed-handler $(DEBUGF) $(GLIBF) $(SANITY) -D COMPILE_LOCALED_BINARY $(SRCDIR)/main.c
19 gcc -o bin/systemd-timedated-handler $(DEBUGF) $(GLIBF) $(SANITY) -D COMPILE_TIMEDATED_BINARY $(SRCDIR)/main.c
20 gcc -o bin/systemd-logind-handler $(DEBUGF) $(GLIBF) $(SANITY) -D COMPILE_LOGIND_BINARY $(SRCDIR)/main.c
21
80328454 22publish:
c3b84b0a 23 gcc -o bin/out.bin $(CFLAGS) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
10aafb89 24
25clean:
26 rm bin/*
27
c09a09bf 28install: _install_conf _install_interface_binaries
10aafb89 29
30_install_conf:
31 cp conf/*-dbus.conf /etc/dbus-1/system.d/
1e610bb7 32 cp conf/systemd_compat.conf /etc/
c09a09bf 33
34_install_interface_binaries:
35 cp bin/systemd-hostnamed-handler /usr/local/libexec/
36 cp bin/systemd-localed-handler /usr/local/libexec/
37 cp bin/systemd-timedated-handler /usr/local/libexec/
38 cp bin/systemd-logind-handler /usr/local/libexec/
39