1
0
forked from GitHub/gf-core

added make file for compiling the C runtime for Android. The JIT compiler for Android is temporary disabled

This commit is contained in:
kr.angelov
2013-09-04 11:56:47 +00:00
parent c837f3927e
commit 35a98594be
4 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
jni_c_files := ../java/jpgf.c
pgf_c_files := data.c expr.c graphviz.c lexer.c linearizer.c literals.c parser.c parseval.c pgf.c printer.c reader.c reasoner.c
gu_c_files := assert.c choice.c dump.c exn.c fun.c in.c list.c map.c out.c read.c str.c type.c utf8.c write.c \
bits.c defs.c enum.c file.c hash.c intern.c log.c mem.c prime.c seq.c string.c ucs.c variant.c yaml.c
LOCAL_MODULE := jpgf
LOCAL_SRC_FILES := $(addprefix ../c/pgf/, $(pgf_c_files)) $(addprefix ../c/gu/, $(gu_c_files))
LOCAL_C_INCLUDES := ../c
include $(BUILD_SHARED_LIBRARY)