diff options
author | notaz | 2010-12-07 13:00:46 +0200 |
---|---|---|
committer | notaz | 2010-12-14 15:25:04 +0200 |
commit | a327967e78393018a9f2a7edb38bc3af657e597a (patch) | |
tree | 707375cb00994b09fdd9bb7bea64678ad968132c /Makefile | |
parent | fa9cfe0a7ff390f15bfdc6add7e57841173d1954 (diff) | |
download | pcsx_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-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |