summaryrefslogtreecommitdiff
path: root/makefiles/gmake/top.mk
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-02 10:59:16 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-02 10:59:16 +0100
commitc2805aa3ff0ca390553ce8a103d0926a37d960c2 (patch)
treef98833dc4933c20ac5cd615fad5545de796b7ab1 /makefiles/gmake/top.mk
parent1d99bd87f762f8a2daad14afda88748c9e3815d6 (diff)
downloadwolfbones-c2805aa3ff0ca390553ce8a103d0926a37d960c2.tar.gz
wolfbones-c2805aa3ff0ca390553ce8a103d0926a37d960c2.tar.bz2
first version of a platform.mk.vars cache to speed up the build
Diffstat (limited to 'makefiles/gmake/top.mk')
-rw-r--r--makefiles/gmake/top.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefiles/gmake/top.mk b/makefiles/gmake/top.mk
index 8463c53..1210751 100644
--- a/makefiles/gmake/top.mk
+++ b/makefiles/gmake/top.mk
@@ -13,6 +13,8 @@
# - target 'dist'
# - target 'help'
+-include makefiles/gmake/platform.mk
+
.PHONY: all
all:
@test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
@@ -27,6 +29,7 @@ clean:
distclean:
@test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
(set -e; $(MAKE) -C $$d distclean || exit 1); done)
+ @-rm $(TOPDIR)/makefiles/gmake/platform.mk.vars
.PHONY: install
install:
@@ -43,6 +46,6 @@ doc:
.PHONY: help
help:
- @cat makefiles/help.mk
+ @cat $(TOPDIR)/makefiles/gmake/help.mk
-include $(TOPDIR)/makefiles/gmake/dist.mk