From a1a232ad65a5c15314cbfe753f734a0a3ad6cef5 Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 2 Dec 2012 02:43:40 +0200 Subject: [PATCH] frontend: fix clean libretro build --- Makefile | 5 +++-- jni/Android.mk | 4 +--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 493306cf..0c7854d7 100644 --- a/Makefile +++ b/Makefile @@ -192,7 +192,8 @@ endif OBJS += frontend/main.o frontend/plugin.o -frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h +frontend/menu.o frontend/main.o: frontend/revision.h +frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h frontend/libpicofe/%.c: @echo "libpicofe module is missing, please run:" @@ -217,7 +218,7 @@ $(TARGET): $(OBJS) $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map clean: $(PLAT_CLEAN) clean_plugins - $(RM) $(TARGET) $(OBJS) $(TARGET).map + $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h ifneq ($(PLUGINS),) plugins_: $(PLUGINS) diff --git a/jni/Android.mk b/jni/Android.mk index 60db810e..89af335c 100644 --- a/jni/Android.mk +++ b/jni/Android.mk @@ -83,10 +83,8 @@ LOCAL_SRC_FILES += ../plugins/cdrcimg/cdrcimg.c # dfinput LOCAL_SRC_FILES += ../plugins/dfinput/main.c ../plugins/dfinput/pad.c ../plugins/dfinput/guncon.c -# gui +# misc LOCAL_SRC_FILES += ../frontend/main.c ../frontend/plugin.c -LOCAL_SRC_FILES += ../frontend/common/fonts.c -LOCAL_SRC_FILES += ../frontend/linux/plat.c # libretro LOCAL_SRC_FILES += ../frontend/libretro.c -- 2.39.2