generarxml/src/Makefile.am

19 lines
395 B
Makefile
Raw Permalink Normal View History

2016-10-17 21:10:47 -03:00
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
bin_PROGRAMS = generarxml
generarxml_SOURCES = main.c \
2016-10-23 23:17:03 -03:00
main.h \
readconfig.c \
readconfig.h \
readfile.c \
readfile.h \
makexml.c \
makexml.h \
encoding.c \
2016-10-29 16:38:22 -03:00
encoding.h \
getline.c \
getline.h
2016-10-17 21:10:47 -03:00
generarxml_CPPFLAGS = $(XML_CPPFLAGS)
generarxml_LDFLAGS= $(XML_LIBS)
2016-10-27 09:52:01 -03:00
generarxml_LDADD = $(libxml2_LIBS) $(LDFLAGS)