summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-07-25 16:55:38 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-07-25 16:55:38 -0400
commit827be127213f3697f954dabf7cc67a5e075bed5e (patch)
treeedc2408929cfb099c7fa1d298653c337bb323101 /Makefile
parent0d704c52842acc805793bb31d8a3aaeccf72d349 (diff)
Have the generic rules begin with an underscore
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9927740..6435439 100644
--- a/Makefile
+++ b/Makefile
@@ -175,9 +175,9 @@ build/packages/%: RECURSIVE build/workdir/% rules/%/Makefile
$(call recurse,$(top)/rules/$*/Makefile) || { $(RM) -r '$@'; $(FAIL); }
$(addprefix build/packages/,$(package_generic)): \
-build/packages/%: RECURSIVE build/workdir/% rules/generic/Makefile
+build/packages/%: RECURSIVE build/workdir/% rules/_generic/Makefile
for dep in $(filter-out RECURSIVE,$^); do $(EXISTS) $$dep || { $(RM) -r '$@'; $(FAIL); }; done
- $(call recurse,$(top)/rules/generic/Makefile) || { $(RM) -r '$@'; $(FAIL); }
+ $(call recurse,$(top)/rules/_generic/Makefile) || { $(RM) -r '$@'; $(FAIL); }
# boilerplate ##################################################################