mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Backport changes to old Makefile
This commit is contained in:
parent
0200434187
commit
1412d0201c
1 changed files with 23 additions and 0 deletions
23
Makefile
23
Makefile
|
@ -424,7 +424,30 @@ release/quake2 : CFLAGS += -DUSE_OPENAL -DDEFAULT_OPENAL_DRIVER='"libopenal.so.1
|
|||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(YQ2_OSTYPE), Linux)
|
||||
release/quake2 : CFLAGS += -DHAVE_EXECINFO
|
||||
endif
|
||||
|
||||
ifeq ($(YQ2_OSTYPE), Darwin)
|
||||
release/quake2 : CFLAGS += -DHAVE_EXECINFO
|
||||
endif
|
||||
|
||||
ifeq ($(YQ2_OSTYPE), SunOS)
|
||||
release/quake2 : CFLAGS += -DHAVE_EXECINFO
|
||||
endif
|
||||
|
||||
ifeq ($(YQ2_OSTYPE), FreeBSD)
|
||||
release/quake2 : CFLAGS += -DHAVE_EXECINFO
|
||||
release/quake2 : LDFLAGS += -lexecinfo
|
||||
endif
|
||||
|
||||
ifeq ($(YQ2_OSTYPE), OpenBSD)
|
||||
release/quake2 : CFLAGS += -DHAVE_EXECINFO
|
||||
release/quake2 : LDFLAGS += -lexecinfo
|
||||
endif
|
||||
|
||||
ifeq ($(YQ2_OSTYPE), Haiku)
|
||||
release/quake2 : CFLAGS += -DHAVE_EXECINFO
|
||||
release/quake2 : LDFLAGS += -lexecinfo
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue