aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fc927b7..7a78977 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CC := gcc
CFLAGS := -Wall -Wextra -Wpedantic
BIND := bin
-CSRCS = $(shell find . -type f -name '*.c')
+CSRCS = $(shell find * -type f -name '*.c')
.PHONY: all clean
@@ -12,6 +12,11 @@ all: $(CSRCS:%.c=$(BIND)/%)
clean:
rm -rf $(BIND)
+$(BIND)/c-templates: c-templates.c
+ mkdir -p $(dir $@)
+ gcc -E -CC $^ | gcc -E -CC -DDEFINE=\#define -xc - | gcc $(CFLAGS) --std=gnu99 -o $@ -xc -
+
$(BIND)/%: %.c
- mkdir -p $(dir $@)p
+ @echo $@
+ mkdir -p $(dir $@)
$(CC) $(CFLAGS) $^ -o $@