summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2004-12-09 23:17:03 +0000
committerbjarni <bjarni@openttd.org>2004-12-09 23:17:03 +0000
commit74619675d505cdb6e9ed5b6a7bac969bfe0d3072 (patch)
tree030cb83008bda72f8b5c7592b55c327eabd7e818 /Makefile
parent416e2b67b13cd2238599e766ce4e6b65b6121ac8 (diff)
downloadopenttd-74619675d505cdb6e9ed5b6a7bac969bfe0d3072.tar.xz
(svn r1000) Makefile: added check for static build releases on mac. Most users can't use a dynamic build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 572496e07..79e045ef6 100644
--- a/Makefile
+++ b/Makefile
@@ -209,6 +209,13 @@ endif
endif
endif
+ifdef RELEASE
+ifdef OSX
+ifndef STATIC
+$(error do not make dynamically linked releases. Most users can't use those)
+endif
+endif
+endif
# Force SDL on UNIX platforms
ifndef WITH_SDL