(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 d3f72568d160
parent 579 e977d17c89b1
child 581 3e83b468ee56
(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