diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-12-06 01:40:34 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-12-06 01:40:34 +0100 |
commit | b75e0340c503cf3d76631508252cf979faf63a48 (patch) | |
tree | 9a3c7b77c7798942b5b31152d15dbfaf4dc83e36 /Makefile_base | |
parent | 6533e74370acfa51653608b1dc5e1292c72970c9 (diff) | |
download | crypto-b75e0340c503cf3d76631508252cf979faf63a48.zip crypto-b75e0340c503cf3d76631508252cf979faf63a48.tar.gz |
Makefiles:remove space between rule and ':'
Diffstat (limited to 'Makefile_base')
-rw-r--r-- | Makefile_base | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile_base b/Makefile_base index 8dd8be3..761fc00 100644 --- a/Makefile_base +++ b/Makefile_base @@ -14,7 +14,7 @@ default: build # GENERATE : buildarch - choose - compile - load - testflag -buildarch : ${DIR}/warn-auto.sh conf-arch LICENSE README AUTHOR Changelog +buildarch: ${DIR}/warn-auto.sh conf-arch LICENSE README AUTHOR Changelog @echo -e "$(CYAN)generating buildarch$(NORM)" @( cat ${DIR}/warn-auto.sh; \ echo "ARCH=`head -1 conf-arch`"; \ @@ -27,7 +27,7 @@ buildarch : ${DIR}/warn-auto.sh conf-arch LICENSE README AUTHOR Changelog ) > buildarch @chmod 755 buildarch -choose : ${DIR}/warn-auto.sh +choose: ${DIR}/warn-auto.sh @echo -e "$(CYAN)generating choose$(NORM)" @( cat ${DIR}/warn-auto.sh; \ echo 'result="$$3"'; \ @@ -45,7 +45,7 @@ choose : ${DIR}/warn-auto.sh ) > choose @chmod 755 choose -compile : ${DIR}/warn-auto.sh conf-cc +compile: ${DIR}/warn-auto.sh conf-cc @echo -e "$(CYAN)generating compile$(NORM)" @( cat ${DIR}/warn-auto.sh; \ echo 'echo -e "`head -1 conf-cc` -c $(RED)$${1} $(NORM)"'; \ @@ -53,7 +53,7 @@ compile : ${DIR}/warn-auto.sh conf-cc ) > compile @chmod 755 compile -load : ${DIR}/warn-auto.sh conf-ld +load: ${DIR}/warn-auto.sh conf-ld @echo -e "$(CYAN)generating load$(NORM)" @( cat ${DIR}/warn-auto.sh; \ echo 'choice=$$1; shift;'; \ @@ -75,7 +75,7 @@ load : ${DIR}/warn-auto.sh conf-ld ) > load @chmod 755 load -testflag : ${DIR}/warn-auto.sh +testflag: ${DIR}/warn-auto.sh @echo -e "$(CYAN)generating testflag$(NORM)" @( cat ${DIR}/warn-auto.sh; \ echo 'FLAG="$$1"; shift'; \ @@ -91,12 +91,12 @@ testflag : ${DIR}/warn-auto.sh @chmod 755 testflag # HIGH LEVEL GENERAL TARGETS -buildstd : +buildstd: @echo -e "$(CYAN)building `pwd`$(NORM)"; @for I in ${SUBDIR}; do \ ( echo -e "$(CYAN)building `pwd`/$$I$(NORM)" && cd $$I && make -s ); \ done; -cleanstd : +cleanstd: @echo -e "$(CYAN)cleaning `pwd`$(NORM)"; @for I in ${SUBDIR}; do ( cd $$I && make -s clean ); done; @if [ -f conf-arch ]; then if [ -f `head -1 conf-arch` ]; then rm `head -1 conf-arch`; fi; fi |