1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
bin_PROGRAMS = ofxconnect
ofxconnect_LDADD = $(top_builddir)/lib/libofx.la @LIBCURL_LIBS@ @LIBXMLPP_LIBS@
ofxconnect_SOURCES = cmdline.h cmdline.c nodeparser.cpp nodeparser.h ofxpartner.cpp ofxpartner.h ofxconnect.cpp
dist_man_MANS = ofxconnect.1
AM_CPPFLAGS = \
-I${top_builddir}/inc \
@LIBCURL_CFLAGS@ \
@LIBXMLPP_CFLAGS@ \
'-DCMDLINE_PARSER_PACKAGE="ofxconnect"'
if USE_GENGETOPT
CLEANFILES = cmdline.c cmdline.h
cmdline.c cmdline.h: cmdline.ggo Makefile
gengetopt --unamed-opts < $<
endif
MAINTAINERCLEANFILES = cmdline.c cmdline.h
EXTRA_DIST = cmdline.ggo test-privateserver.sh CMakeLists.txt
# See README.privateserver for details on this server and how to get
# the key needed to run this test.
TESTS = test-privateserver.sh
ofxconnect.1: $(top_srcdir)/configure.ac
if HAVE_HELP2MAN
$(HELP2MAN) -n 'Create a statement request file' -N --output=ofxconnect.1 ./ofxconnect$(EXEEXT)
else
echo "*** No man page available because of missing help2man tool" > $@
endif
|