aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkremlin <ian@kremlin.cc>2014-06-03 02:25:23 +0800
committerkremlin <ian@kremlin.cc>2014-06-03 02:25:23 +0800
commitb7f8df4449a7eb3acdbac54403028ed70ed15a22 (patch)
treeb4be01e284cc70084278dd5fa8f6e730a3b4e842
parentc992721530292cac0e5e3cbbe808e54f1ac5509c (diff)
downloadsystembsd-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--.gitignore4
-rw-r--r--Makefile2
-rw-r--r--bin/tmp1
-rw-r--r--src/main.c2
4 files changed, 6 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index a9f0599..64a2fc7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
-bin/*
+bin/*.out
+bin/*.bin
+bin/*.o
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
diff --git a/Makefile b/Makefile
index 27bff7a..434a735 100644
--- a/Makefile
+++ b/Makefile
@@ -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`
diff --git a/bin/tmp b/bin/tmp
new file mode 100644
index 0000000..945c9b4
--- /dev/null
+++ b/bin/tmp
@@ -0,0 +1 @@
+. \ No newline at end of file
diff --git a/src/main.c b/src/main.c
index a51b30d..42a4779 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,5 +1,5 @@
#include <gio/gio.h>
-#include "modules/hostnamed/hostnamed.c"
+#include "interfaces/hostnamed/hostnamed.c"
int main() {
hostnamed_init();