diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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) |