diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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) |