aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2010-12-09 19:15:01 +0200
committernotaz2010-12-14 15:25:05 +0200
commit69af03a2c2fccc06cb836f42a10b490a48f29c15 (patch)
tree486d6a6d91e252a95cf56e48057cbe28eaee34ee /Makefile
parent698517be481301b4525c29873134a67b8343af3c (diff)
downloadpcsx_rearmed-69af03a2c2fccc06cb836f42a10b490a48f29c15.tar.gz
pcsx_rearmed-69af03a2c2fccc06cb836f42a10b490a48f29c15.tar.bz2
pcsx_rearmed-69af03a2c2fccc06cb836f42a10b490a48f29c15.zip
add OMAP layer, also preliminary menu, hud and input support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d0b4bc7..3ca1616 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,13 @@ CC = $(CROSS_COMPILE)gcc
LD = $(CROSS_COMPILE)ld
CFLAGS += -ggdb -Ifrontend
-LDFLAGS += -lz -lpthread -ldl
+LDFLAGS += -lz -lpthread -ldl -lpng
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
+CFLAGS += -O2 # -DNDEBUG
endif
#DRC_DBG = 1
#PCNT = 1
@@ -55,10 +55,14 @@ endif
OBJS += gui/Config.o gui/Plugin.o
OBJS += frontend/main.o frontend/plugin.o frontend/plugin_lib.o
-OBJS += frontend/linux/fbdev.o
+OBJS += frontend/omap.o frontend/menu.o
+OBJS += frontend/linux/fbdev.o frontend/linux/in_evdev.o
+OBJS += frontend/linux/plat.o frontend/linux/oshide.o
+OBJS += frontend/common/fonts.o frontend/common/input.o frontend/common/readpng.o
ifdef CROSS_COMPILE
OBJS += frontend/arm_utils.o
endif
+frontend/%.o: CFLAGS += -Wall -DIN_EVDEV
$(TARGET): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map