Added helpful information messages in Makefile.
This commit is contained in:
parent
331307d287
commit
176ad909f7
@ -7,16 +7,22 @@
|
|||||||
.DEFAULT_GOAL := help
|
.DEFAULT_GOAL := help
|
||||||
|
|
||||||
all: clean
|
all: clean
|
||||||
|
@echo "Launching the main build script..."
|
||||||
@time sh build_minimal_linux_live.sh 2>&1 | tee minimal_linux_live.log
|
@time sh build_minimal_linux_live.sh 2>&1 | tee minimal_linux_live.log
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@echo "Removing source files..."
|
||||||
@rm -rf source
|
@rm -rf source
|
||||||
|
@echo "Removing generated work artifacts..."
|
||||||
@rm -rf work
|
@rm -rf work
|
||||||
|
@echo "Removing generated ISO image..."
|
||||||
@rm -f minimal_linux_live.iso
|
@rm -f minimal_linux_live.iso
|
||||||
|
@echo "Removing build log file..."
|
||||||
@rm -f minimal_linux_live.log
|
@rm -f minimal_linux_live.log
|
||||||
|
|
||||||
emulator:
|
emulator:
|
||||||
@if [ ! -f ./minimal_linux_live.iso ]; then echo "ISO image \"minimal_linux_live.iso\" not found."; exit 1; fi
|
@if [ ! -f ./minimal_linux_live.iso ]; then echo "ISO image \"minimal_linux_live.iso\" not found."; exit 1; fi
|
||||||
|
@echo "Launching emulator..."
|
||||||
@if [ "$(shell uname -m)" = "x86_64" ]; then sh qemu64.sh; else sh qemu32.sh; fi
|
@if [ "$(shell uname -m)" = "x86_64" ]; then sh qemu64.sh; else sh qemu32.sh; fi
|
||||||
|
|
||||||
help:
|
help:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user