diff options
author | Colin Snover | 2017-10-13 01:41:48 -0500 |
---|---|---|
committer | Eugene Sandulenko | 2018-08-18 14:16:45 +0200 |
commit | 4cd928a567104dda2a28f6326a4d1fd27f139cea (patch) | |
tree | ed9f6e3a27bdcd840eb797138a464c184ab3d817 /Makefile | |
parent | 6e40b64eb1b8d605cf6dc958c80507a6db595614 (diff) | |
download | scummvm-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-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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) |