summaryrefslogtreecommitdiffstats
path: root/Makefile_base
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile_base')
-rw-r--r--Makefile_base14
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