2016-10-16 16:55:55 -03:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
bin_PROGRAMS = generarxml
|
|
|
|
generarxml_SOURCES = src/main.c \
|
2016-10-16 18:30:22 -03:00
|
|
|
src/main.h \
|
2016-10-16 16:55:55 -03:00
|
|
|
src/readconfig.c \
|
2016-10-16 18:30:22 -03:00
|
|
|
src/readconfig.h \
|
2016-10-16 16:55:55 -03:00
|
|
|
src/readfile.c \
|
2016-10-16 18:30:22 -03:00
|
|
|
src/readfile.h \
|
2016-10-16 16:55:55 -03:00
|
|
|
src/encoding.c \
|
2016-10-16 18:30:22 -03:00
|
|
|
src/encoding.h \
|
|
|
|
src/string.c \
|
|
|
|
src/string.h
|
2016-10-16 16:55:55 -03:00
|
|
|
generarxml_CPPFLAGS = $(XML_CPPFLAGS)
|
|
|
|
generarxml_LDFLAGS= $(XML_LIBS)
|
2016-10-17 20:18:31 -03:00
|
|
|
generarxml_LDADD = ${libxml2_LIBS}
|
2016-10-16 18:30:22 -03:00
|
|
|
EXTRA_DIST = misc/Biblia.txt \
|
|
|
|
misc/config.dtd \
|
|
|
|
misc/chris.conf \
|
|
|
|
src/misc/Biblia.txt \
|
|
|
|
src/misc/config.dtd \
|
|
|
|
src/misc/chris.conf
|