diff options
author | Paolo Iommarini | 2013-02-17 13:38:32 +0100 |
---|---|---|
committer | Paolo Iommarini | 2013-02-17 13:38:32 +0100 |
commit | a76fd9535db9b36dd4d8f2e6bc9d804db807907f (patch) | |
tree | 98deeed535caf0f0647d31fb6a7f066d5e6b556d /Makefile | |
parent | 1ac804af759a1439428d57c41c05bdda0c59bc21 (diff) | |
download | pcsx_rearmed-a76fd9535db9b36dd4d8f2e6bc9d804db807907f.tar.gz pcsx_rearmed-a76fd9535db9b36dd4d8f2e6bc9d804db807907f.tar.bz2 pcsx_rearmed-a76fd9535db9b36dd4d8f2e6bc9d804db807907f.zip |
Maemo ehancement
-Added command line options
-Added pause on incoming call
-Added change disc
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -171,9 +171,16 @@ USE_PLUGIN_LIB = 1 USE_FRONTEND = 1 endif ifeq "$(PLATFORM)" "maemo" -OBJS += maemo/hildon.o maemo/main.o +OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o maemo/%.o: maemo/%.c USE_PLUGIN_LIB = 1 +LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse) +EXTRA_CFLAGS += $(shell pkg-config --cflags hildon-1) +#EXTRA_CFLAGS += -DMAEMO -DMAEMO_CHANGES -march=armv7-a -O3 -mtune=cortex-a8 -mfpu=neon -funsafe-math-optimizations \ +# -mstructure-size-boundary=32 -falign-functions=32 -falign-loops +CFLAGS += $(EXTRA_CFLAGS) +CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2` +LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2` endif ifeq "$(PLATFORM)" "libretro" OBJS += frontend/libretro.o |