From: kremlin Date: Thu, 26 Jun 2014 23:05:38 +0000 (-0500) Subject: clean up makefile, add -std=c89 and -pedantic to build-proper flags X-Git-Tag: gsoc-final~115 X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=systembsd.git;a=commitdiff_plain;h=d89a2b8771ec04dd1e648560f7775c2c3f3180ec clean up makefile, add -std=c89 and -pedantic to build-proper flags --- 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/