diff options
author | notaz | 2010-12-10 13:54:59 +0200 |
---|---|---|
committer | notaz | 2010-12-14 15:25:05 +0200 |
commit | ccf51908872ddeb811b1245e6751600b860d90b5 (patch) | |
tree | 75a1c81c1ff1878ad12bcbf4a54eba3de3ab57ea /Makefile | |
parent | 4b421010647aba998fe2ebfc7d6f226623d47954 (diff) | |
download | pcsx_rearmed-ccf51908872ddeb811b1245e6751600b860d90b5.tar.gz pcsx_rearmed-ccf51908872ddeb811b1245e6751600b860d90b5.tar.bz2 pcsx_rearmed-ccf51908872ddeb811b1245e6751600b860d90b5.zip |
fix x86 build, minor refactoring
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -55,12 +55,15 @@ endif OBJS += gui/Config.o gui/Plugin.o OBJS += frontend/main.o frontend/plugin.o frontend/plugin_lib.o -OBJS += frontend/omap.o frontend/menu.o +OBJS += 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 +OBJS += frontend/plat_omap.o +else +OBJS += frontend/plat_dummy.o endif frontend/%.o: CFLAGS += -Wall -DIN_EVDEV |