From d89a2b8771ec04dd1e648560f7775c2c3f3180ec Mon Sep 17 00:00:00 2001 From: kremlin Date: Thu, 26 Jun 2014 18:05:38 -0500 Subject: [PATCH] clean up makefile, add -std=c89 and -pedantic to build-proper flags --- Makefile | 18 ++++++++++++++---- 1 file 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/ -- 2.41.0