(svn r1000) Makefile: added check for static build releases on mac. Most users can't use a dynamic build

This commit is contained in:
bjarni 2004-12-09 23:17:03 +00:00
parent b747cd2fcd
commit 515e33c414

View File

@ -209,6 +209,13 @@ endif
endif 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 # Force SDL on UNIX platforms
ifndef WITH_SDL ifndef WITH_SDL