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