bafd75a943adea04e7a0286ac2899167f0b48b14
[systembsd.git] / Makefile
1 .PHONY: all
2
3 CFLAGS=-Wall -Wextra -Werror -std=c89
4 DEBUGF=-O0 -v -g
5 SRCDIR=src
6 INTFDIR=$(SRCDIR)/interfaces
7 SANITY=-Wno-unused-variable -Wno-unused-parameter # -Wno-comment
8
9 GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0`
10
11 all: build
12
13 build:
14 gcc -o bin/out.bin $(DEBUGF) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
15
16 build-proper:
17 gcc -o bin/out.bin $(CFLAGS) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
18
19 clean:
20 rm bin/*
21
22 install: _install_conf
23
24 _install_conf:
25 cp conf/*-dbus.conf /etc/dbus-1/system.d/
26 cp conf/systemd_compat.conf /etc/