aboutgitcodelistschat:MatrixIRC
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d63b035..3d9a3ad 100644
--- a/Makefile
+++ b/Makefile
@@ -20,11 +20,13 @@ CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR)
all: cooker eater seitan
+.PHONY: cooker
cooker:
- $(MAKE) -C seitan-cooker
+ $(MAKE) -C cooker
+.PHONY: eater
eater:
- $(MAKE) -C seitan-eater
+ $(MAKE) -C eater
seitan: $(SRCS) $(HEADERS)
$(CC) $(CFLAGS) -o $(BIN) $(SRCS)