mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Make the Makefile better configurable.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7129 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
4c17c7e2dd
commit
714b54b9b8
@ -1,5 +1,11 @@
|
||||
SUBDIRS = . test
|
||||
|
||||
# FIXME: this ought to be a configure option
|
||||
LIBOFX_PREFIX = /usr/local
|
||||
|
||||
LIBOFX_LIBS = -L${LIBOFX_PREFIX}/lib -lofx -lstdc++
|
||||
LIBOFX_CFLAGS = -I${LIBOFX_PREFIX}/include
|
||||
|
||||
pkglib_LTLIBRARIES=libgncmod-ofx.la
|
||||
|
||||
libgncmod_ofx_la_SOURCES = \
|
||||
@ -16,7 +22,7 @@ libgncmod_ofx_la_LIBADD = \
|
||||
${top_builddir}/src/engine/libgncmod-engine.la \
|
||||
${top_builddir}/src/import-export/libgncmod-generic-import.la \
|
||||
${GLIB_LIBS} \
|
||||
-lofx -lstdc++
|
||||
${LIBOFX_LIBS}
|
||||
|
||||
gncscmdir = ${GNC_SCM_INSTALL_DIR}/ofx
|
||||
|
||||
@ -35,7 +41,8 @@ AM_CFLAGS = \
|
||||
-I${top_srcdir}/src/gnome \
|
||||
-I${top_srcdir}/src/gnome-utils \
|
||||
-I${top_srcdir}/src/import-export \
|
||||
${GLIB_CFLAGS}
|
||||
${GLIB_CFLAGS} \
|
||||
${LIBOFX_CFLAGS}
|
||||
|
||||
EXTRA_DIST = \
|
||||
.cvsignore
|
||||
|
Loading…
Reference in New Issue
Block a user