?prevdifflink? - Blame
###############################################################################
#
# These are the kind of files that are subject to normal clean-up.
#
# This makefile requires two global variables:
# CLEAN - clean all compiled files
# (defined in the makefile that imports this)
# VERYCLEAN - clean all generated files (by a compiler or any other program
# like a pre-processor, generator, etc.
# (defined in the makefile that imports this)
#
.PHONY : clean
clean:
@rm -rvf *~ $(CLEAN)
@${MAKE} recurse target=clean
.PHONY : very-clean
very-clean:
@rm -rvf *~ $(CLEAN) $(VERYCLEAN)
@${MAKE} recurse target=very-clean
|