summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-10-20 16:47:56 +0000
committerRoy Marples <roy@marples.name>2008-10-20 16:47:56 +0000
commitd12bb5cf3c69d083b2829d0d66f31b0c3becdd64 (patch)
tree1348ec56f5c809044786f9c5044f781a569d8085 /mk
parent9c76b077d681914d462c1fe1fb53ef23eb4eb449 (diff)
downloadopenrc-d12bb5cf3c69d083b2829d0d66f31b0c3becdd64.tar.gz
openrc-d12bb5cf3c69d083b2829d0d66f31b0c3becdd64.tar.bz2
openrc-d12bb5cf3c69d083b2829d0d66f31b0c3becdd64.tar.xz
Really fix .depend
Diffstat (limited to 'mk')
-rw-r--r--mk/depend-.mk2
-rw-r--r--mk/depend-gmake.mk3
-rw-r--r--mk/depend.mk10
3 files changed, 11 insertions, 4 deletions
diff --git a/mk/depend-.mk b/mk/depend-.mk
new file mode 100644
index 0000000..9d13b52
--- /dev/null
+++ b/mk/depend-.mk
@@ -0,0 +1,2 @@
+# This space left intentionally blank because gmake does not load .depend
+# by default
diff --git a/mk/depend-gmake.mk b/mk/depend-gmake.mk
new file mode 100644
index 0000000..947843e
--- /dev/null
+++ b/mk/depend-gmake.mk
@@ -0,0 +1,3 @@
+# Tell gmake to include the optional dependency file.
+# This sucks, but I don't know any other way of portably making this work.
+-include .depend
diff --git a/mk/depend.mk b/mk/depend.mk
index 2ae6e1e..8e66c1c 100644
--- a/mk/depend.mk
+++ b/mk/depend.mk
@@ -9,7 +9,9 @@ IGNOREFILES+= .depend
depend: .depend extra_depend
-# Nasty hack for gmake which does not automatically include .depend
-# if it exists, unlike every other make implementation.
-INC_DEPEND= $(shell if test -e .depend; then echo ".depend"; else echo ""; fi)
-include ${INC_DEPEND}
+# Nasty hack. depend-.mk is a blank file, depend-gmake.mk has a gmake specific
+# command to optionally include .depend.
+# Someone should patch gmake to optionally include .depend if it exists.
+_INC_DEP= $(shell if ${MAKE} --version | grep -q "^GNU "; then \
+ echo "gmake"; else echo ""; fi)
+include ${MK}/depend-${_INC_DEP}.mk