aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorkremlin- <ian@kremlin.cc>2014-06-27 07:05:38 +0800
committerkremlin- <ian@kremlin.cc>2014-06-27 07:05:38 +0800
commit10aafb894ef3d0c148e686179e1c350cd05361e1 (patch)
tree8a53e906c2daf65ebbd22dc8233c6ac4ac151a50 /Makefile
parent8636b04c9edbf044c195c516ba751ea76b90f57e (diff)
downloadsystembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.tar
systembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.tar.gz
systembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.tar.bz2
systembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.tar.lz
systembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.tar.xz
systembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.tar.zst
systembsd-10aafb894ef3d0c148e686179e1c350cd05361e1.zip
clean up makefile, add -std=c89 and -pedantic to build-proper flags
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 14 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e7d247f..d8cde2b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,25 @@
.PHONY: all
-CFLAGS=-Wall -Wextra -Werror
+CFLAGS=-Wall -Wextra -Werror -std=c89 -pedantic
DEBUGF=-O0 -v -g
SRCDIR=src
INTFDIR=$(SRCDIR)/interfaces
-SANITY=-Wno-unused-variable -Wno-unused-parameter -Wno-comment
+SANITY=-Wno-unused-variable -Wno-unused-parameter # -Wno-comment
GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0`
-main:
+all: build
+
+build:
gcc -o bin/out.bin $(DEBUGF) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
-main-publish:
+build-proper:
gcc -o bin/out.bin $(CFLAGS) $(GLIBF) $(SANITY) $(SRCDIR)/main.c
+
+clean:
+ rm bin/*
+
+install: _install_conf
+
+_install_conf:
+ cp conf/*-dbus.conf /etc/dbus-1/system.d/