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
commit515e33c4141f13723dc9f3a1187b15256cdff18d (patch)
tree030cb83008bda72f8b5c7592b55c327eabd7e818 /Makefile
parentb747cd2fcdf0aa2b4f80ce4529da0cb76db76e2b (diff)
downloadopenttd-515e33c4141f13723dc9f3a1187b15256cdff18d.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