aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2011-09-25 15:31:41 +0300
committernotaz2011-09-25 15:31:41 +0300
commit3ebefe711e0fb2fe941951b764ea5623436cf887 (patch)
tree39a25c96de1bcf5182b8afcd85a74e4805980e9b /Makefile
parent55b0eeea6028e00741e620d28ab3211c49b8515f (diff)
downloadpcsx_rearmed-3ebefe711e0fb2fe941951b764ea5623436cf887.tar.gz
pcsx_rearmed-3ebefe711e0fb2fe941951b764ea5623436cf887.tar.bz2
pcsx_rearmed-3ebefe711e0fb2fe941951b764ea5623436cf887.zip
gte: switch divider back to table
pandora won't be affected because it uses VFP anyway, and pollux prefers the table for some reason. Also send the divider to it's own .c file for future reuse.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bf364c7..d942e1c 100644
--- a/Makefile
+++ b/Makefile
@@ -42,11 +42,12 @@ all: $(TARGET)
# core
OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
- libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/gte.o libpcsxcore/mdec.o \
+ libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
+OBJS += libpcsxcore/gte.o libpcsxcore/gte_divider.o
ifeq "$(HAVE_NEON)" "1"
OBJS += libpcsxcore/gte_neon.o
endif