14 lines
244 B
Makefile
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 $@
|