Don't pass the CFLAGS to the linker

This commit is contained in:
Yamagi Burmeister 2011-06-27 14:43:27 +00:00
parent eec6f17dff
commit aef969f5a0
1 changed files with 1 additions and 1 deletions

View File

@ -290,5 +290,5 @@ build/q_shared.o: src/q_shared.c
# Quake II
release/game.so : $(XATRIX_OBJS)
$(CC) $(CFLAGS) -o $@ $(XATRIX_OBJS) $(LDFLAGS)
$(CC) -o $@ $(XATRIX_OBJS) $(LDFLAGS)