Makefile
changeset 2712 f0b9526767d3
parent 2689 41eb2858480e
child 2713 9c42385e4f41
--- a/Makefile	Sat Dec 03 10:36:23 2005 +0000
+++ b/Makefile	Sat Dec 03 13:43:54 2005 +0000
@@ -73,9 +73,6 @@
 # do `make install', the game won't be able to find it's files (so you should
 # also define all the following paths before building).
 #
-# OSX specific paths are set in os/macosx/Makefile
-# MAKEMOVEABLE moves the dynamic libs into the bundle to make the app independent from end user's libs (OSX only)
-#
 # So, the following paths should be defined if INSTALL is defined.
 # None of these paths have to end with /
 # PREFIX:	Normally /usr/local
@@ -200,6 +197,14 @@
 endif
 endif
 
+ifdef OSX
+ifdef RELEASE
+# all OSX releases needs to be static
+# end users don't tend to have the dynamic libs installed
+$(warning Compiling a dynamic release. It should be static unless you really know what you are doing!!!)
+endif
+endif
+
 # Force SDL on UNIX platforms
 ifndef WITH_SDL
 ifdef UNIX