summaryrefslogtreecommitdiff
path: root/src/c/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/Makefile')
-rw-r--r--src/c/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/Makefile b/src/c/Makefile
index 9625009..9ee253d 100644
--- a/src/c/Makefile
+++ b/src/c/Makefile
@@ -1,5 +1,6 @@
.PHONY: all
all: $(C_OBJECTS)
+
$(C_OBJECT_DIR)/%.o: %.c
- $(CC) -c $< -o $@ -std=gnu99 $(CFLAGS)
+ $(CC) $(CFLAGS) -c $< -o $@