@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 $@
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.