diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-21 11:46:19 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-21 11:49:47 +0300 |
commit | 9b71498d373408ae596371c0a0bf5aaf637cb593 (patch) | |
tree | da55543d52d2dd62dbabdb6cec17809b9835c458 /android/sdremote | |
parent | 09f1ff4f59a89b10d5475b7296351c1dd0f09633 (diff) |
Add a Makefile
Note that sdremote does not use any LO native code, this Makefile does
not need and has none of the related complexity, like those in
../experimental/*.
Change-Id: Iaa9fb7f0b1a96af4283dc19a2ad125f37ba85411
Diffstat (limited to 'android/sdremote')
-rw-r--r-- | android/sdremote/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/android/sdremote/Makefile b/android/sdremote/Makefile new file mode 100644 index 000000000000..4727b7cac6d4 --- /dev/null +++ b/android/sdremote/Makefile @@ -0,0 +1,15 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +include ../../config_host.mk + +all: + echo sdk.dir=$(ANDROID_SDK_HOME) >local.properties + $(ANT) debug + +# vim: set noet sw=4 ts=4: |