(svn r1000) Makefile: added check for static build releases on mac. Most users can't use a dynamic build
authorbjarni
Thu, 09 Dec 2004 23:17:03 +0000
changeset 580 be080525ea08
parent 579 08ce4c50bd32
child 581 ee767b9671a7
(svn r1000) Makefile: added check for static build releases on mac. Most users can't use a dynamic build
Makefile
--- a/Makefile	Thu Dec 09 23:16:52 2004 +0000
+++ b/Makefile	Thu Dec 09 23:17:03 2004 +0000
@@ -209,6 +209,13 @@
 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