Tools makefile: remove unrelated clean commands

This commit is contained in:
Simon Duquennoy 2017-11-17 13:33:31 -08:00
parent 3933fd30df
commit 223039d802
1 changed files with 1 additions and 22 deletions

View File

@ -3,27 +3,6 @@ all: tunslip6
CFLAGS += -Wall -Werror
tunslip6: tools-utils.c tunslip6.c
clean:
rm -f *.o tunslip6
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 ../arch/platform/}}
@rm -f -v ${addprefix ../examples/*/*/*., ${shell ls ../arch/platform/}}
cleandone:
@echo ${info All done!}