Files
looper/Makefile

23 lines
361 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Toplevel Makefile delegates build/clean/test to subdirectories
SUBDIRS = engine client
.PHONY: all build clean test $(SUBDIRS)
all: build
build: $(SUBDIRS)
@echo "Build complete."
$(SUBDIRS):
$(MAKE) -C $@
test:
$(MAKE) -C engine test
clean:
@for dir in $(SUBDIRS); do \
echo "Cleaning $$dir..."; \
$(MAKE) -C $$dir clean; \
done