StupidOS/share/mk/stpd.clean.mk
2025-10-08 15:01:16 +02:00

12 lines
140 B
Makefile

ifndef _STPD_CLEAN_MK_
_STPD_CLEAN_MK_=1
.PHONY: clean
clean:
ifeq ($(strip $(CLEANFILES)),)
@true
else
rm -f $(CLEANFILES)
endif
endif