Makefile 223 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ifeq ($(BDIR),) BDIR=BUILD endif # to avoid clear all files ID?=0000 F2RM=$(shell find ./$(BDIR) -maxdepth 2 -name "$(ID)*") clean: @for i in $(F2RM); do echo remove $$i; rm -rf $$i; done distclean: rm -rf $(BDIR)/*