aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-08-27 22:48:25 +0200
committerTeddy Wing2018-08-27 22:48:25 +0200
commit7e6c8f852951742bce3a3855e57a6c1bb4e5a504 (patch)
tree8ef9770601b6540435b3ed016923e4f9221bd09b
parent3d17de2014ba72b7dc4f31788a81ea7326108edd (diff)
downloadDomeKey-7e6c8f852951742bce3a3855e57a6c1bb4e5a504.tar.bz2
Add Makefile
Planning on using this to set up build a dependency on the Rust project.
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..94de899
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+SOURCE_FILES = $(shell find DomeKey lib \
+ -type f \
+ -name '*.h' \
+ -or -name '*.m' \
+ -or -name '*.c')
+
+
+build: $(SOURCE_FILES)
+ xcodebuild -scheme DomeKey -configuration Debug