X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=434a7353092a136b0e06cb1132a68493257731bb;hb=0bdd83e971431112a0dcdea15c724d3e2dde66d6;hp=631a7abd412341dedd7d4e1b96b9005350a0d125;hpb=5918aae8a60242e6152a34eff72d67bf97ea606d;p=systembsd.git diff --git a/Makefile b/Makefile index 631a7ab..434a735 100644 --- a/Makefile +++ b/Makefile @@ -1 +1,11 @@ -# see next commit +.PHONY: all + +CFLAGS=-Wall -Wextra -Werror -pedantic +DEBUGF=-O0 -v -g +SRCDIR=src +INTFDIR=$(SRCDIR)/interfaces + +GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0` + +hostnamed: + gcc -o bin/out.bin $(DEBUGF) $(GLIBF) $(SRCDIR)/main.c