diff options
author | Andre Heider | 2009-09-27 14:59:40 +0000 |
---|---|---|
committer | Andre Heider | 2009-09-27 14:59:40 +0000 |
commit | ac4c2701e9b59b551620dbea5f9bdc72fc46e2ab (patch) | |
tree | 1aa31bdb3e553b2629b58a7f6888fe0dc05dbfe8 /Makefile | |
parent | 33e9b0baf941d2541e616d2f46f98471e5e3b788 (diff) | |
download | scummvm-rg350-ac4c2701e9b59b551620dbea5f9bdc72fc46e2ab.tar.gz scummvm-rg350-ac4c2701e9b59b551620dbea5f9bdc72fc46e2ab.tar.bz2 scummvm-rg350-ac4c2701e9b59b551620dbea5f9bdc72fc46e2ab.zip |
New configure var "_port_mk", set to "ports.mk" per default. Ports can overwrite this, and this change finally allows make targets in that file to access all the common mk variables (e.g. EXECUTABLE).
svn-id: r44401
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -78,4 +78,7 @@ else $(error You need to run $(srcdir)/configure before you can run make. Check $(srcdir)/configure --help for a list of parameters) endif -include $(srcdir)/ports.mk +ifneq ($(origin port_mk), undefined) +include $(srcdir)/$(port_mk) +endif + |