From 74b2102e759c14eed7526f8e740a7f07341bc5bc Mon Sep 17 00:00:00 2001 From: Markham Date: Fri, 9 Oct 2020 19:09:56 +0200 Subject: [PATCH] fix target all: rename it to neutrino-all --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ff7e788..22c0437 100755 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ printenv: @echo " * make neutrino - builds neutrino with a complete filesystem (build_tmp/rootfs)" @echo " * make neutrino-flash - builds neutrino, creates a tarball (build_tmp/*systemfs*.tar)" @echo " and a flash-image (build_tmp/*systemfs*.img)" - @echo " * make all - builds neutrino, creates a tarball (build_tmp/*systemfs*.tar)" + @echo " * make neutrino-all - builds neutrino, creates a tarball (build_tmp/*systemfs*.tar)" @echo " and a u-boot-image (build_tmp/*u-boot*.img)" @echo " and a kernel-image (build_tmp/*kernel*.img)" @echo " and a flash-image (build_tmp/*systemfs*.img)" @@ -180,12 +180,12 @@ neutrino-flash: @echo ' ============================================================================== ' @echo "" -all: +neutrino-all: $(START_BUILD) $(MAKE) neutrino system-tools applications multimedia plugins skeleton bootloader kernel driver drivers rootfs flash-prepare flash flash-full flash-check flash-finalize @echo "" @echo ' ============================================================================== ' - @echo -e " \033[32mmake all done\033[0m" + @echo -e " \033[32mmake neutrino-all done\033[0m" @echo ' ============================================================================== ' @echo "" @@ -349,7 +349,7 @@ drivers: PHONY += all help printenv .print-phony PHONY += toolcheck update-git update-git-target update-neutrino update-self -PHONY += init neutrino neutrino-flash all +PHONY += init neutrino neutrino-flash neutrino-all PHONY += prerequisites download PHONY += bootstrap includes-and-libs modules PHONY += neutrino -- 2.39.5