diff options
| author | Jack Palevich <jackpal@google.com> | 2010-05-25 08:20:12 +0800 |
|---|---|---|
| committer | Jack Palevich <jackpal@google.com> | 2010-05-25 08:20:12 +0800 |
| commit | 0cf08ed5ad723b55a5b020cb566de391ac2cce5b (patch) | |
| tree | 30d7e9646be9ad44c1592f5f8a66e6c573a38545 /liblinenoise/Android.mk | |
| parent | e7de18e4451760dffbb3170cbd7651d05dd77987 (diff) | |
| download | core-0cf08ed5ad723b55a5b020cb566de391ac2cce5b.tar.gz core-0cf08ed5ad723b55a5b020cb566de391ac2cce5b.tar.bz2 core-0cf08ed5ad723b55a5b020cb566de391ac2cce5b.zip | |
Move linenoise to its own static library.
This allows us to publish its license, as required
by the terms of its license.
Diffstat (limited to 'liblinenoise/Android.mk')
| -rw-r--r-- | liblinenoise/Android.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/liblinenoise/Android.mk b/liblinenoise/Android.mk new file mode 100644 index 000000000..b32a5f1ff --- /dev/null +++ b/liblinenoise/Android.mk @@ -0,0 +1,12 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +# Static library +# ======================================================== + +include $(CLEAR_VARS) +LOCAL_MODULE:= liblinenoise +LOCAL_SRC_FILES := linenoise.c + + +include $(BUILD_STATIC_LIBRARY) |
