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
|
||||
#endif
|
||||
#if (CONFIG_PLATFORM&PLATFORM_ANDROID)
|
||||
hosted/yesno.c
|
||||
hosted/notification.c
|
||||
hosted/android/yesno.c
|
||||
hosted/android/notification.c
|
||||
#else
|
||||
gui/yesno.c
|
||||
#endif
|
||||
|
@ -126,7 +126,7 @@ player/keyboard.c
|
|||
recorder/bmp.c
|
||||
recorder/icons.c
|
||||
#if (CONFIG_PLATFORM&PLATFORM_ANDROID)
|
||||
hosted/keyboard.c
|
||||
hosted/android/keyboard.c
|
||||
#else
|
||||
recorder/keyboard.c
|
||||
#endif
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
#
|
||||
|
||||
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)
|
||||
|
||||
# apps/features.txt is a file that (is preprocessed and) lists named features
|
||||
|
|
Loading…
Reference in a new issue