forked from contiki-os/contiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
25 lines (22 loc) · 847 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
all: tunslip
tunslip6: tools-utils.c tunslip6.c
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!}