diff options
author | montellese <montellese@xbmc.org> | 2012-06-24 20:01:26 +0200 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-08 19:14:45 -0400 |
commit | 3f9d2fff49266c4e9934f4568215cbdb30703673 (patch) | |
tree | d18743733641b260036cc31afa8bc5415869d732 /Makefile.in | |
parent | 2923e19005daef3c515de7a9de848d200dfc38f8 (diff) |
[droid] implement basic CAndroidStorageProvider
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 16e71c205f..3808e84050 100755 --- a/Makefile.in +++ b/Makefile.in @@ -108,18 +108,20 @@ DIRECTORY_ARCHIVES += xbmc/powermanagement/osx/powermanagement.a DIRECTORY_ARCHIVES += xbmc/storage/osx/storage.a DIRECTORY_ARCHIVES += xbmc/windowing/osx/windowing_osx.a else +ifeq (@USE_ANDROID@,1) DIRECTORY_ARCHIVES += xbmc/input/linux/input_linux.a DIRECTORY_ARCHIVES += xbmc/network/linux/network_linux.a - -ifeq (@USE_ANDROID@,1) DIRECTORY_ARCHIVES += xbmc/powermanagement/android/powermanagement_android.a +DIRECTORY_ARCHIVES += xbmc/storage/android/storage_android.a +DIRECTORY_ARCHIVES += xbmc/windowing/X11/windowing_X11.a else +DIRECTORY_ARCHIVES += xbmc/input/linux/input_linux.a +DIRECTORY_ARCHIVES += xbmc/network/linux/network_linux.a DIRECTORY_ARCHIVES += xbmc/powermanagement/linux/powermanagement_linux.a -endif - DIRECTORY_ARCHIVES += xbmc/storage/linux/storage_linux.a DIRECTORY_ARCHIVES += xbmc/windowing/X11/windowing_X11.a endif +endif ifeq ($(findstring freebsd,@ARCH@),freebsd) DIRECTORY_ARCHIVES += xbmc/freebsd/freebsd.a |