mirror of
https://github.com/yquake2/ctf.git
synced 2024-11-21 19:31:05 +00:00
Resolve oversight in last commit.
This commit is contained in:
parent
1531bcebb7
commit
26019096ee
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -146,7 +146,7 @@ override LDFLAGS += -shared
|
|||
# Required libaries
|
||||
ifeq ($(YQ2_OSTYPE), Darwin)
|
||||
override LDFLAGS += -arch $(YQ2_ARCH)
|
||||
else ifeq ($(OSTYPE), Windows)
|
||||
else ifeq ($(YQ2_OSTYPE), Windows)
|
||||
override LDFLAGS += -static-libgcc
|
||||
else
|
||||
override LDFLAGS += -lm
|
||||
|
@ -183,12 +183,12 @@ clean:
|
|||
# ----------
|
||||
|
||||
# The ctf game
|
||||
ifeq ($(OSTYPE), Windows)
|
||||
ifeq ($(YQ2_OSTYPE), Windows)
|
||||
ctf:
|
||||
@echo "===> Building game.dll"
|
||||
$(Q)mkdir -p release
|
||||
$(MAKE) release/game.dll
|
||||
else ifeq ($(OSTYPE), Darwin)
|
||||
else ifeq ($(YQ2_OSTYPE), Darwin)
|
||||
ctf:
|
||||
@echo "===> Building game.dylib"
|
||||
${Q}mkdir -p release
|
||||
|
|
Loading…
Reference in a new issue