summaryrefslogtreecommitdiff
path: root/src/c/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/Makefile')
-rw-r--r--src/c/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/c/Makefile b/src/c/Makefile
new file mode 100644
index 0000000..7c5d1af
--- /dev/null
+++ b/src/c/Makefile
@@ -0,0 +1,5 @@
+.PHONY: all
+all: $(C_OBJECTS)
+
+$(BUILD_DIR)/%.o: %.c
+ $(CC) -c $< -o $@ -std=gnu99 $(CFLAGS)