Files
pintos_22/Makefile
2024-10-01 23:37:39 +01:00

14 lines
244 B
Makefile

CLEAN_SUBDIRS = src doc tests
all::
@echo "This makefile has only 'clean' and 'check' targets."
clean::
for d in $(CLEAN_SUBDIRS); do $(MAKE) -C $$d $@; done
distclean:: clean
find . -name '*~' -exec rm '{}' \;
check::
make -C tests $@