aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2018-06-27 19:50:25 +1200
committerDavid Phillips <david@sighup.nz>2018-06-27 19:56:24 +1200
commit4816ac8405f3f8a18f0e296b9a748a27d66fed0e (patch)
tree37124c1d7786147c7a76030e47f44ddab8873be1 /Makefile
parent737b8916cfa2ba16edeee3d9518e3b5715724c0d (diff)
downloadalarmd-4816ac8405f3f8a18f0e296b9a748a27d66fed0e.tar.xz
Change from TCP to UNIX sockets, massive clean up
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7b4a567..cd2efa7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,12 @@
-CFLAGS += "-I./inc/"
+CFLAGS += "-I./inc/ -Wall -Wextra"
LDFLAGS += -L./lib/
-.PHONY: lib alarmd alarms-show
+all:
+ make -C lib
+ make -C alarmd
+ make -C alarm-tools
-all: lib alarmd alarm-tools
+clean:
+ make -C lib clean
+ make -C alarmd clean
+ make -C alarm-tools clean