Add clean-build-tools target.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-01-19 17:58:07 +01:00
parent 69159d275f
commit 377eec2061
2 changed files with 7 additions and 0 deletions

View File

@ -112,6 +112,12 @@ endif
cp -RTv "$(SYSROOT)/$$ENTRY" "$(DESTDIR)/$$ENTRY" || exit $$?; \
done
.PHONY: clean-build-tools
clean-build-tools:
$(MAKE) -C carray clean
$(MAKE) -C mkinitrd clean
$(MAKE) -C tix clean
.PHONY: build-tools
build-tools:
$(MAKE) -C carray

View File

@ -96,6 +96,7 @@ tree into the ~/sortix directory, you can install them by typing the following
commands:
cd ~/sortix &&
make PREFIX="$CROSS_PREFIX" clean-build-tools &&
make PREFIX="$CROSS_PREFIX" build-tools &&
make PREFIX="$CROSS_PREFIX" install-build-tools &&
make distclean