Adding the necessary functions file

This commit is contained in:
Jeremy Huntwork 2005-10-03 01:01:28 +00:00
parent 0fc4c75515
commit 47e0a385dc

21
functions Normal file
View file

@ -0,0 +1,21 @@
export BRW= ""
export RED= ""
export GREEN= ""
export ORANGE= ""
export BLUE= ""
export WHITE= ""
define echo_message
@echo $(BRW)
@echo ================================================================================
@echo $(BRW)$(1) target $(BLUE)$@$(BRW)
@echo ================================================================================$(WHITE)
endef
define unpack-lfs
@cd $(LFS)$(SRC) ; tar -xvjf $(1) > /tmp/unpacked
endef
define unpack
@cd $(SRC) ; tar -xvf $(1) > /tmp/unpacked
endef