mirror of
https://github.com/yquake2/xatrix.git
synced 2024-11-10 06:42:22 +00:00
Generate game.dylib on OS X. Fixes #148.
This commit is contained in:
parent
92be77cd83
commit
6034d77bbe
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -217,6 +217,10 @@ ifeq ($(OSTYPE), Windows)
|
|||
release/game.dll : $(XATRIX_OBJS)
|
||||
@echo "===> LD $@"
|
||||
${Q}$(CC) $(LDFLAGS) -o $@ $(XATRIX_OBJS)
|
||||
else ifeq ($(OSTYPE), Darwin)
|
||||
release/game.dylib : $(XATRIX_OBJS)
|
||||
@echo "===> LD $@"
|
||||
${Q}$(CC) $(LDFLAGS) -o $@ $(XATRIX_OBJS)
|
||||
else
|
||||
release/game.so : $(XATRIX_OBJS)
|
||||
@echo "===> LD $@"
|
||||
|
|
Loading…
Reference in a new issue