summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 18bde1e..f692264 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,16 @@
.PHONY: all clean
-all: build
+all: build/limox build/tests/get_domainpart
+ ./build/tests/get_domainpart
+
+build/limox: build
gcc main.c gui.c xmpp.c -o build/limox -lSDL2
+build/tests/get_domainpart: build
+ gcc tests/get_domainpart.c xmpp.c -o build/tests/get_domainpart -I.
+
build:
- mkdir -p build
+ mkdir -p build/tests
clean:
rm -rf build