diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/Makefile b/package/Makefile index adeb238d43..12ea942a6a 100644 --- a/package/Makefile +++ b/package/Makefile @@ -16,6 +16,10 @@ $(STAMP_DIR) $(TARGET_DIR): @echo "-> make $@" $(MAKE) -C $(patsubst %-compile,%,$@) compile +%-install: $(STAMP_DIR) $(TARGET_DIR) + @echo "-> make $@" + $(MAKE) -C $(patsubst %-install,%,$@) install + %-clean: $(STAMP_DIR) $(TARGET_DIR) $(MAKE) -C $(patsubst %-clean,%,$@) clean |