summaryrefslogtreecommitdiff
path: root/modules.mk
diff options
context:
space:
mode:
authorJohn Ogness <john.ogness@linutronix.de>2018-04-19 22:35:12 +0200
committerJohn Ogness <john.ogness@linutronix.de>2018-04-19 22:35:12 +0200
commitdf15a63f24578c11a89dfc673738734cfbc54f22 (patch)
tree21c3b741a6bfc11c32efe65f98cca981a5a14438 /modules.mk
parentdea7b676557d9fcabe617380683bdca34becb3d9 (diff)
build: add missing PHONY targets
Some targets were missed in b9c47deaa48("build: cleanup PHONY targets"). Add them as well. Signed-off-by: John Ogness <john.ogness@linutronix.de>
Diffstat (limited to 'modules.mk')
-rw-r--r--modules.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules.mk b/modules.mk
index d3ea784..eab7185 100644
--- a/modules.mk
+++ b/modules.mk
@@ -12,10 +12,12 @@ build:
$(Q)$(foreach files,$(obj-y),$(MODMK) $(files);)
$(Q)$(foreach files,$(obj-y),cp -t $(DEPLOY) $(files);)
+PHONY += buildhandouts
buildhandouts:
$(Q)$(foreach files,$(obj-handout-y),$(MODMK) $(files);)
$(Q)$(foreach files,$(obj-handout-y),cp -t $(DEPLOYHANDOUT) $(files);)
+PHONY += buildprintouts
buildprintouts:
$(Q)$(foreach files,$(obj-y),$(MODMK) $(files);)
$(Q)$(foreach files,$(obj-y),cp -t $(DEPLOYPRINTOUT) $(files);)