1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #6470 from kaspar030/fix_maindir_clean_target

make: remove pkg/*/ from clean targets
This commit is contained in:
Peter Kietzmann 2017-01-25 12:13:56 +01:00 committed by GitHub
commit e855767d0f

View File

@ -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!"