X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=10614ec63aa119e1a6278583eea3dcf1e06b9417;hp=bf3eee265cda8e8543f98f70d10e8f231e7a4345;hb=d352cde27e89b1be21bf8f88c3ca79e0eb497165;hpb=fa9cfe0a7ff390f15bfdc6add7e57841173d1954 diff --git a/Makefile b/Makefile index bf3eee26..10614ec6 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +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 @@ -54,7 +55,17 @@ 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/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 $(TARGET): $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map