X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2FMakefile.am;h=a10810e2a2335bdcf115beda4464ec5b56cfb663;hb=0a66eda71b0d2f65ee968816b48a9311c17cbf34;hp=9bd55c15051920888781e6f3dd64e8cb806f5994;hpb=44733edab79a63ea04c25dca3ae0a64cd9bb46fb;p=gedcom-parse.git diff --git a/gedcom/Makefile.am b/gedcom/Makefile.am index 9bd55c1..a10810e 100644 --- a/gedcom/Makefile.am +++ b/gedcom/Makefile.am @@ -6,10 +6,11 @@ SUBDIRS = calendar . localedir = $(datadir)/locale INCLUDES = -I $(srcdir)/../intl -I $(srcdir)/../include -I $(srcdir)/calendar \ + -I $(srcdir)/../utf8 \ -DPKGDATADIR=\"$(pkgdatadir)\" -DLOCALEDIR=\"$(localedir)\" YFLAGS = --debug --defines LFLAGS = -8 -CFLAGS = -g -O2 -W -Wall -pedantic +CFLAGS = -O2 -W -Wall -pedantic -Wno-long-long @EXTRA_CFLAGS@ lib_LTLIBRARIES = libgedcom.la libgedcom_la_SOURCES = lex.gedcom_1byte_.c \ @@ -25,9 +26,12 @@ libgedcom_la_SOURCES = lex.gedcom_1byte_.c \ date.c \ hash.c \ xref.c \ - compat.c -libgedcom_la_LDFLAGS = -version-info $(LIBVERSION) -libgedcom_la_LIBADD = calendar/libcalendar.la + age.c \ + compat.c \ + buffer.c \ + write.c +libgedcom_la_LDFLAGS = -export-dynamic -version-info $(LIBVERSION) +libgedcom_la_LIBADD = calendar/libcalendar.la ../utf8/libutf8.la @INTLLIBS@ BUILT_SOURCES = lex.gedcom_1byte_.c \ lex.gedcom_hilo_.c \ lex.gedcom_lohi_.c \ @@ -45,14 +49,18 @@ noinst_HEADERS = encoding.h \ date.h \ hash.h \ xref.h \ - compat.h + age.h \ + compat.h \ + buffer.h \ + tag_data.h EXTRA_DIST = gedcom.y \ gedcom_date.y \ gedcom_1byte.lex \ gedcom_hilo.lex \ gedcom_lohi.lex \ gedcom_date.lex \ - gedcom_lex_common.c + gedcom_lex_common.c \ + $(BUILT_SOURCES) include $(top_srcdir)/Makefile.inc