aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCameron Cawley2018-08-16 23:08:28 +0100
committerEugene Sandulenko2018-08-18 14:16:45 +0200
commitae9cb8aa7bf4d875880bd36649ab995a5905d4bd (patch)
treedefea779b3fc4daf5142f77ea84370e1114900ff /Makefile
parent1dd41fa57809d6fb1a6182a0fd0853edc203c306 (diff)
downloadscummvm-rg350-ae9cb8aa7bf4d875880bd36649ab995a5905d4bd.tar.gz
scummvm-rg350-ae9cb8aa7bf4d875880bd36649ab995a5905d4bd.tar.bz2
scummvm-rg350-ae9cb8aa7bf4d875880bd36649ab995a5905d4bd.zip
BUILD: Simplify print-dists rule
filter DIST_FILES_% matches variables such as DIST_FILES_DOCS_language that shouldn't be included in the output as a result of commit c9f2091.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9958e5ebdc..70153e62ac 100644
--- a/Makefile
+++ b/Makefile
@@ -114,7 +114,7 @@ endif
.PHONY: print-dists print-executables
print-dists:
- @echo $(foreach V, $(filter DIST_FILES_%, $(.VARIABLES)), $($V))
+ @echo $(DIST_FILES_DOCS) $(DIST_FILES_THEMES) $(DIST_FILES_NETWORKING) $(DIST_FILES_ENGINEDATA) $(srcdir)/doc
print-executables:
@echo $(if $(DIST_EXECUTABLES),$(DIST_EXECUTABLES),$(EXECUTABLE) $(PLUGINS))