RaaA: move Android apps-code to separate dir under apps/hosted
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29563 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cae7560f32
commit
d833e78fac
6 changed files with 6 additions and 3 deletions
|
@ -94,8 +94,8 @@ gui/statusbar.c
|
||||||
gui/statusbar-skinned.c
|
gui/statusbar-skinned.c
|
||||||
#endif
|
#endif
|
||||||
#if (CONFIG_PLATFORM&PLATFORM_ANDROID)
|
#if (CONFIG_PLATFORM&PLATFORM_ANDROID)
|
||||||
hosted/yesno.c
|
hosted/android/yesno.c
|
||||||
hosted/notification.c
|
hosted/android/notification.c
|
||||||
#else
|
#else
|
||||||
gui/yesno.c
|
gui/yesno.c
|
||||||
#endif
|
#endif
|
||||||
|
@ -126,7 +126,7 @@ player/keyboard.c
|
||||||
recorder/bmp.c
|
recorder/bmp.c
|
||||||
recorder/icons.c
|
recorder/icons.c
|
||||||
#if (CONFIG_PLATFORM&PLATFORM_ANDROID)
|
#if (CONFIG_PLATFORM&PLATFORM_ANDROID)
|
||||||
hosted/keyboard.c
|
hosted/android/keyboard.c
|
||||||
#else
|
#else
|
||||||
recorder/keyboard.c
|
recorder/keyboard.c
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
INCLUDES += -I$(APPSDIR) $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
|
INCLUDES += -I$(APPSDIR) $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
|
||||||
|
ifdef APP_TYPE
|
||||||
|
INCLUDES += -I$(APPSDIR)/hosted -I$(APPSDIR)/hosted/$(APP_TYPE)
|
||||||
|
endif
|
||||||
SRC += $(call preprocess, $(APPSDIR)/SOURCES)
|
SRC += $(call preprocess, $(APPSDIR)/SOURCES)
|
||||||
|
|
||||||
# apps/features.txt is a file that (is preprocessed and) lists named features
|
# apps/features.txt is a file that (is preprocessed and) lists named features
|
||||||
|
|
Loading…
Reference in a new issue