1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 15:09:10 +00:00

(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 416e2b67b1
commit 74619675d5

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