Add gitclean and distclean options to /tools/Makefile

This commit is contained in:
David Kopf 2011-08-05 12:14:18 -04:00
parent 96c3c1093a
commit bfbc3234ea
1 changed files with 22 additions and 0 deletions

View File

@ -1 +1,23 @@
all: codeprop tunslip
gitclean:
@git clean -d -x -n ..
@echo "Enter yes to delete these files";
@read response;if [[ "$$response" = "yes" ]]; then git clean -d -f -x ..;fi;
distclean: cleanobj cleanfiles cleantargets cleandone
cleanobj:
${info Removing obj_* directories...}
@find ../examples/ -name "obj_*" -print -exec rm -R '{}' +
cleanfiles:
${info Removing .map, .co, .ce, contiki*.a files...}
@find ../examples -name "*.map" -print -delete
@find ../examples -name "*.co" -print -delete
@find ../examples -name "*.ce" -print -delete
@find ../examples -name "contiki-*.a" -delete
cleantargets:
${info Removing .TARGET builds...}
@rm -f -v ${addprefix ../examples/*/*., ${shell ls ../platform/}}
@rm -f -v ${addprefix ../examples/*/*/*., ${shell ls ../platform/}}
cleandone:
@echo ${info All done!}