Skip to content
Snippets Groups Projects
Commit c835441a authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

make: remove pkg/*/ from clean targets

parent 46d2f26c
No related branches found
No related tags found
No related merge requests found
...@@ -20,11 +20,11 @@ docclean: ...@@ -20,11 +20,11 @@ docclean:
clean: clean:
@echo "Cleaning all build products for the current board" @echo "Cleaning all build products for the current board"
@find ./pkg/ ./examples/ ./tests/ -maxdepth 2 -mindepth 2 -type f -name Makefile -execdir "${MAKE}" clean ';' @find ./examples/ ./tests/ -maxdepth 2 -mindepth 2 -type f -name Makefile -execdir "${MAKE}" clean ';'
distclean: docclean distclean: docclean
@echo "Cleaning all build products" @echo "Cleaning all build products"
@find ./pkg/ ./examples/ ./tests/ -maxdepth 2 -mindepth 2 -type f -name Makefile -execdir "${MAKE}" distclean ';' @find ./examples/ ./tests/ -maxdepth 2 -mindepth 2 -type f -name Makefile -execdir "${MAKE}" distclean ';'
welcome: welcome:
@echo "Welcome to RIOT - The friendly OS for IoT!" @echo "Welcome to RIOT - The friendly OS for IoT!"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment