aboutsummaryrefslogtreecommitdiffstats
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
commitd89a2b8771ec04dd1e648560f7775c2c3f3180ec (patch)
tree8a53e906c2daf65ebbd22dc8233c6ac4ac151a50
parent7f67c06978732bc0c623f5688f31f32f2ed6b005 (diff)
downloadsystembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.tar
systembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.tar.gz
systembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.tar.bz2
systembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.tar.lz
systembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.tar.xz
systembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.tar.zst
systembsd-d89a2b8771ec04dd1e648560f7775c2c3f3180ec.zip
clean up makefile, add -std=c89 and -pedantic to build-proper flags
-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/