Newer
Older
project / mk / clean-rule.mk
Nomura Kei on 24 Apr 2020 399 bytes first commit
# ------------------------------------------------------------------------------
#  clean ルール
# ------------------------------------------------------------------------------
.PHONY: clean
clean:
	@for subdir in $(SUBDIRS); do	\
		$(MAKE) clean -C $$subdir;	\
	done
ifneq ($(strip $(CLEAN_FILES)),)
	$(RM) -f $(CLEAN_FILES)
endif
ifneq ($(strip $(CLEAN_DIRS)),)
	$(RM) -f $(CLEAN_DIRS)
endif