Subversion

2lt

?curdirlinks? - Rev 1

?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


Theme by Vikram Singh | Powered by WebSVN v2.3.3