summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a1e609f0e..1cdd3abed 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,14 @@ all:
install:
$(MAKE) -C $(BUILD_DIR) install
+# Hmm, .PHONY does not work with wildcard rules :-(
+SPECS = v4l2-spec dvb-spec
+
+.PHONY: $(SPECS)
+
+$(SPECS):
+ $(MAKE) -C $(BUILD_DIR) $(MAKECMDGOALS)
+
%::
$(MAKE) -C $(BUILD_DIR) $(MAKECMDGOALS)