1
0
Fork 0

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

release/0.4.5
bjarni 2004-12-09 23:17:03 +00:00
parent 416e2b67b1
commit 74619675d5
1 changed files with 7 additions and 0 deletions

View File

@ -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