aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorColin Snover2017-10-13 01:41:48 -0500
committerEugene Sandulenko2018-08-18 14:16:45 +0200
commit4cd928a567104dda2a28f6326a4d1fd27f139cea (patch)
treeed9f6e3a27bdcd840eb797138a464c184ab3d817 /Makefile
parent6e40b64eb1b8d605cf6dc958c80507a6db595614 (diff)
downloadscummvm-rg350-4cd928a567104dda2a28f6326a4d1fd27f139cea.tar.gz
scummvm-rg350-4cd928a567104dda2a28f6326a4d1fd27f139cea.tar.bz2
scummvm-rg350-4cd928a567104dda2a28f6326a4d1fd27f139cea.zip
BUILD: Add commands for retrieving calculated binaries & dist files
Instead of hard-coding these lists into the CI system's packaging code, expose them from Make so that everything is sourced off the same one list.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a01c45f570..c98cf89c5b 100644
--- a/Makefile
+++ b/Makefile
@@ -111,3 +111,10 @@ config.mk engines/plugins_table.h engines/engines.mk: config.h
ifneq ($(origin port_mk), undefined)
include $(srcdir)/$(port_mk)
endif
+
+.PHONY: print-dists print-executables
+print-dists:
+ @echo $(foreach V, $(filter DIST_FILES_%, $(.VARIABLES)), $($V))
+
+print-executables:
+ @echo $(EXECUTABLE) $(PLUGINS)