diff options
author | kremlin <ian@kremlin.cc> | 2014-06-03 02:25:23 +0800 |
---|---|---|
committer | kremlin <ian@kremlin.cc> | 2014-06-03 02:25:23 +0800 |
commit | b7f8df4449a7eb3acdbac54403028ed70ed15a22 (patch) | |
tree | b4be01e284cc70084278dd5fa8f6e730a3b4e842 | |
parent | c992721530292cac0e5e3cbbe808e54f1ac5509c (diff) | |
download | systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.tar systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.tar.gz systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.tar.bz2 systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.tar.lz systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.tar.xz systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.tar.zst systembsd-b7f8df4449a7eb3acdbac54403028ed70ed15a22.zip |
update makefile and main.c to reflect changes of previous commit, also place tempfile in bin/ as abscence causes git to ignore directory's existence
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | bin/tmp | 1 | ||||
-rw-r--r-- | src/main.c | 2 |
4 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,6 @@ -bin/* +bin/*.out +bin/*.bin +bin/*.o [._]*.s[a-w][a-z] [._]s[a-w][a-z] *.un~ @@ -3,7 +3,7 @@ CFLAGS=-Wall -Wextra -Werror -pedantic DEBUGF=-O0 -v -g SRCDIR=src -MODDIR=$(SRCDIR)/modules +INTFDIR=$(SRCDIR)/interfaces GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0` @@ -0,0 +1 @@ +.
\ No newline at end of file @@ -1,5 +1,5 @@ #include <gio/gio.h> -#include "modules/hostnamed/hostnamed.c" +#include "interfaces/hostnamed/hostnamed.c" int main() { hostnamed_init(); |