X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2FMakefile.am;h=d00ac885164b54b56d541cba57107325b1b401b7;hb=f063286d11379bef709dc47d696e4f5b8e9b20c1;hp=7a46ae8bbe76d590a6280d4a89d7a4f0babd8dca;hpb=d4a4e9cba04f9bf056d54c9ae349cc7e89ff337d;p=gedcom-parse.git diff --git a/gedcom/Makefile.am b/gedcom/Makefile.am index 7a46ae8..d00ac88 100644 --- a/gedcom/Makefile.am +++ b/gedcom/Makefile.am @@ -9,7 +9,7 @@ INCLUDES = -I $(srcdir)/../intl -I $(srcdir)/../include -I $(srcdir)/calendar \ -DPKGDATADIR=\"$(pkgdatadir)\" -DLOCALEDIR=\"$(localedir)\" YFLAGS = --debug --defines LFLAGS = -8 -CFLAGS = -g -O2 -W -Wall -pedantic -Wno-long-long +CFLAGS = -g -O2 -W -Wall -pedantic -Wno-long-long @EXTRA_CFLAGS@ lib_LTLIBRARIES = libgedcom.la libgedcom_la_SOURCES = lex.gedcom_1byte_.c \ @@ -26,9 +26,10 @@ libgedcom_la_SOURCES = lex.gedcom_1byte_.c \ hash.c \ xref.c \ age.c \ - compat.c + compat.c \ + buffer.c libgedcom_la_LDFLAGS = -export-dynamic -version-info $(LIBVERSION) $(LIBICONV) -libgedcom_la_LIBADD = calendar/libcalendar.la +libgedcom_la_LIBADD = calendar/libcalendar.la @INTLLIBS@ BUILT_SOURCES = lex.gedcom_1byte_.c \ lex.gedcom_hilo_.c \ lex.gedcom_lohi_.c \ @@ -47,14 +48,18 @@ noinst_HEADERS = encoding.h \ hash.h \ xref.h \ age.h \ - compat.h + compat.h \ + buffer.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 gedcom.tab.c gedcom.tab.h: gedcom.y $(YACC) $(YFLAGS) --name-prefix=gedcom_ $< @@ -98,14 +103,3 @@ lex.gedcom_lohi_.test.o: lex.gedcom_lohi_.c clean-local: rm -f $(EXTRA_PROGRAMS) - -%.tabgen.h: %.tab.h - if [ ! -r $(srcdir)/$@ ] ; \ - then \ - touch $(srcdir)/$@; \ - fi - if ! diff -q $< $(srcdir)/$@ > /dev/null; \ - then \ - rm $(srcdir)/$@; \ - cp $(srcdir)/$< $(srcdir)/$@; \ - fi