mirror of https://github.com/OpenTTD/OpenTTD
(svn r3864) -Fix: small problems with make-system, making room for a wrapper-configure
parent
42d1731cc1
commit
cc2993992f
2
Makefile
2
Makefile
|
@ -974,7 +974,7 @@ depend:
|
||||||
@true # The include handles this automagically
|
@true # The include handles this automagically
|
||||||
|
|
||||||
# Introduce the dependencies
|
# Introduce the dependencies
|
||||||
ifeq ($(findstring $(MAKECMDGOALS), clean info depend mrproper),)
|
ifeq ($(findstring $(MAKECMDGOALS), clean info depend mrproper upgradeconf $(MAKE_CONFIG)),)
|
||||||
-include $(DEPS)
|
-include $(DEPS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,8 @@ endif
|
||||||
|
|
||||||
ifeq ($(shell expr $(CONFIG_VERSION) \< 9), 1)
|
ifeq ($(shell expr $(CONFIG_VERSION) \< 9), 1)
|
||||||
|
|
||||||
|
ifndef BYPASS_OS_DETECT
|
||||||
|
|
||||||
# Automatically recognize if building on Win32
|
# Automatically recognize if building on Win32
|
||||||
ifdef WINDIR
|
ifdef WINDIR
|
||||||
ifndef UNIX
|
ifndef UNIX
|
||||||
|
@ -56,6 +58,9 @@ SUNOS:=1
|
||||||
UNIX:=1
|
UNIX:=1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# END BYPASS_OS_DETECT
|
||||||
|
endif
|
||||||
|
|
||||||
# FreeBSD uses sdl11 instead of sdl
|
# FreeBSD uses sdl11 instead of sdl
|
||||||
ifdef FREEBSD
|
ifdef FREEBSD
|
||||||
SDL-CONFIG:=sdl11-config
|
SDL-CONFIG:=sdl11-config
|
||||||
|
|
Loading…
Reference in New Issue