1libucl_common_cflags= -I$(top_srcdir)/src \ 2 -I$(top_srcdir)/include \ 3 -I$(top_srcdir)/uthash \ 4 -Wall -W -Wno-unused-parameter -Wno-pointer-sign 5lib_LTLIBRARIES= libucl.la 6libucl_la_SOURCES= ucl_emitter.c \ 7 ucl_hash.c \ 8 ucl_parser.c \ 9 ucl_schema.c \ 10 ucl_util.c \ 11 xxhash.c 12libucl_la_CFLAGS= $(libucl_common_cflags) \ 13 @CURL_CFLAGS@ 14libucl_la_LDFLAGS = -version-info @SO_VERSION@ 15libucl_la_LIBADD= @LIBFETCH_LIBS@ \ 16 @LIBCRYPTO_LIB@ \ 17 @LIBREGEX_LIB@ \ 18 @CURL_LIBS@ 19 20include_HEADERS= $(top_srcdir)/include/ucl.h 21noinst_HEADERS= ucl_internal.h \ 22 xxhash.h \ 23 ucl_hash.h \ 24 ucl_chartable.h \ 25 tree.h 26