aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2010-12-07 13:00:46 +0200
committernotaz2010-12-14 15:25:04 +0200
commita327967e78393018a9f2a7edb38bc3af657e597a (patch)
tree707375cb00994b09fdd9bb7bea64678ad968132c /Makefile
parentfa9cfe0a7ff390f15bfdc6add7e57841173d1954 (diff)
downloadpcsx_rearmed-a327967e78393018a9f2a7edb38bc3af657e597a.tar.gz
pcsx_rearmed-a327967e78393018a9f2a7edb38bc3af657e597a.tar.bz2
pcsx_rearmed-a327967e78393018a9f2a7edb38bc3af657e597a.zip
simple neon BGR555 to RGB565 converter
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index bf3eee2..d0b4bc7 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,7 @@ CFLAGS += -ggdb -Ifrontend
LDFLAGS += -lz -lpthread -ldl
ifdef CROSS_COMPILE
CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math
+ASFLAGS += -mcpu=cortex-a8 -mfpu=neon
endif
ifndef DEBUG
CFLAGS += -O2
@@ -55,6 +56,9 @@ OBJS += gui/Config.o gui/Plugin.o
OBJS += frontend/main.o frontend/plugin.o frontend/plugin_lib.o
OBJS += frontend/linux/fbdev.o
+ifdef CROSS_COMPILE
+OBJS += frontend/arm_utils.o
+endif
$(TARGET): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map