blob: d47be30685a9e32ea965b11ffee089d133cf55dd [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001# libyaml/jni/Android.mk
2
Emeric Vigier2f625822012-08-06 11:09:52 -04003include $(CLEAR_VARS)
4
Alexandre Lision950e9d62013-12-02 15:09:01 -05005MY_LIBYAML := libyaml/sources
6
Emeric Vigier2f625822012-08-06 11:09:52 -04007LOCAL_CFLAGS := -DYAML_VERSION_STRING=\"0.1.4\" \
8 -DYAML_VERSION_MAJOR=0 \
9 -DYAML_VERSION_MINOR=1 \
10 -DYAML_VERSION_PATCH=4
Alexandre Lision950e9d62013-12-02 15:09:01 -050011
Emeric Vigier2f625822012-08-06 11:09:52 -040012LOCAL_MODULE := libyaml
Alexandre Lision950e9d62013-12-02 15:09:01 -050013
Alexandre Lision950e9d62013-12-02 15:09:01 -050014LOCAL_SRC_FILES := $(MY_LIBYAML)/api.c \
15 $(MY_LIBYAML)/reader.c \
16 $(MY_LIBYAML)/scanner.c \
17 $(MY_LIBYAML)/parser.c \
18 $(MY_LIBYAML)/loader.c \
19 $(MY_LIBYAML)/writer.c \
20 $(MY_LIBYAML)/emitter.c \
21 $(MY_LIBYAML)/dumper.c
22
23LOCAL_C_INCLUDES += $(MY_LIBYAML)/inc
Emeric Vigier2f625822012-08-06 11:09:52 -040024
Alexandre Lision48ae6af2013-12-03 11:21:52 -050025include $(BUILD_STATIC_LIBRARY)