BRW= "[0;1m"
RED= "[0;31m"
GREEN= "[0;32m"
ORANGE= "[0;33m"
BLUE= "[1;34m"
WHITE= "[00m"
define echo_message
@echo $(BRW)
@echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@echo $(BRW)$(1) target $(BLUE)$@$(BRW)
@echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~$(WHITE)
endef
define unpack
@cd $(LFS)$(SRC) ; tar -xvjf $(1) > /tmp/unpacked
define echo_finished
@echo $(BRW)Finished the build of $(BLUE)LFS-$(1)$(BRW)
@echo -e \\t\\t$(RED)W A R N I N G$(BRW)
@echo
@echo To be able to boot your new LFS system you need to follow
@echo the next steps:$(WHITE)
@echo -e \\t- Enter to the chroot using the command found
@echo -e \\tin chapter06/revisedchroot.html
@echo -e \\t- Set a password for the root user
@echo -e \\t- Set your local time zone. See chapter06/glibc.html
@echo -e \\t- Edit /etc/fstab, /etc/hosts, /etc/sysconfig/clock,
@echo -e \\t/etc/sysconfig/console, /etc/sysconfig/network,
@echo -e \\t/etc/sysconfig/ifconfig.eth0/ipv4 and any other configuration
@echo -e \\tfile required to suit your needs.
@echo -e \\t- Set-up Grub. See chapter08/grub.html
@echo -e \\t- Unmount the filesystems. See chapter09/reboot.html
@echo -e \\t\\t$(GREEN)Have a nice day $(ORANGE):-\)$(BRW)