get rid of ifdef maze in main.c, the binaries will be compiled sep.
[systembsd.git] / Makefile
CommitLineData
496f5d66 1.PHONY: all
9fd3f859 2
205ba9a7 3CFLAGS=-Wall -Wextra -Werror -std=c89
d15318db 4DEBUGF=-O0 -g
496f5d66 5SRCDIR=src
b7f8df44 6INTFDIR=$(SRCDIR)/interfaces
d89a2b87 7SANITY=-Wno-unused-variable -Wno-unused-parameter # -Wno-comment
9fd3f859 8
fd8852d9 9GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0`
32a2d8e2 10
d89a2b87 11all: build
12
13build:
39df6847 14 gcc -o bin/out.bin $(DEBUGF) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
15
7f0a0212 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
482145dd 22publish:
39df6847 23 gcc -o bin/out.bin $(CFLAGS) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
d89a2b87 24
25clean:
26 rm bin/*
27
7f0a0212 28install: _install_conf _install_interface_binaries
d89a2b87 29
30_install_conf:
31 cp conf/*-dbus.conf /etc/dbus-1/system.d/
ef6cdbf9 32 cp conf/systemd_compat.conf /etc/
7f0a0212 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