mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Forgot two.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5348 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
ded89a4b2a
commit
7e3b07dc51
5
src/gnome-utils/.cvsignore
Normal file
5
src/gnome-utils/.cvsignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
.deps
|
||||||
|
*.diff
|
||||||
|
gnc-dir.h
|
93
src/gnome-utils/Makefile.am
Normal file
93
src/gnome-utils/Makefile.am
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
SUBDIRS = . #test
|
||||||
|
|
||||||
|
pkglib_LTLIBRARIES = libgncmod-gnome-utils.la
|
||||||
|
|
||||||
|
CFLAGS = @CFLAGS@ ${GLIB_CFLAGS}
|
||||||
|
|
||||||
|
#FIXME remove the following deps
|
||||||
|
# -I${top_srcdir}/src \
|
||||||
|
# -I${top_srcdir}/src/gnome \
|
||||||
|
# -I${top_srcdir}/src/register/ledger-core \
|
||||||
|
# -I${top_srcdir}/src/register/register-core \
|
||||||
|
|
||||||
|
INCLUDES = \
|
||||||
|
-I${top_srcdir}/src/gnc-module \
|
||||||
|
-I${top_srcdir}/src/engine \
|
||||||
|
-I${top_srcdir}/src/app-utils \
|
||||||
|
-I${top_srcdir}/src \
|
||||||
|
-I${top_srcdir}/src/gnome \
|
||||||
|
-I${top_srcdir}/src/register/ledger-core \
|
||||||
|
-I${top_srcdir}/src/register/register-core \
|
||||||
|
${GNOME_INCLUDEDIR} \
|
||||||
|
${GUILE_INCS} \
|
||||||
|
${GUPPI_CFLAGS}
|
||||||
|
|
||||||
|
libgncmod_gnome_utils_la_SOURCES = \
|
||||||
|
cursors.c \
|
||||||
|
dialog-commodity.c \
|
||||||
|
dialog-utils.c \
|
||||||
|
druid-utils.c \
|
||||||
|
gnc-account-tree.c \
|
||||||
|
gnc-amount-edit.c \
|
||||||
|
gnc-commodity-edit.c \
|
||||||
|
gnc-currency-edit.c \
|
||||||
|
gnc-date-delta.c \
|
||||||
|
gnc-date-edit.c \
|
||||||
|
gnc-frequency.c \
|
||||||
|
gnc-gui-query.c \
|
||||||
|
gnc-html-history.c \
|
||||||
|
gnc-html-guppi.c \
|
||||||
|
gnc-html.c \
|
||||||
|
gnc-menu-extensions.c \
|
||||||
|
gncmod-gnome-utils.c \
|
||||||
|
gtkselect.c
|
||||||
|
|
||||||
|
noinst_HEADERS = \
|
||||||
|
dialog-commodity.h \
|
||||||
|
dialog-utils.h \
|
||||||
|
druid-utils.h \
|
||||||
|
gnc-account-tree.h \
|
||||||
|
gnc-amount-edit.h \
|
||||||
|
gnc-commodity-edit.h \
|
||||||
|
gnc-currency-edit.c \
|
||||||
|
gnc-date-delta.h \
|
||||||
|
gnc-date-edit.h \
|
||||||
|
gnc-dir.h \
|
||||||
|
gnc-frequency.h \
|
||||||
|
gnc-gui-query.h \
|
||||||
|
gnc-html-history.h \
|
||||||
|
gnc-html-guppi.h \
|
||||||
|
gnc-html.h \
|
||||||
|
gnc-menu-extensions.h \
|
||||||
|
gtkselect.h
|
||||||
|
|
||||||
|
libgncmod_gnome_utils_la_LDFLAGS = -module
|
||||||
|
|
||||||
|
libgncmod_gnome_utils_la_LIBADD = \
|
||||||
|
-L../gnc-module -L../gnc-module/.libs -lgncmodule \
|
||||||
|
-L../engine -L../engine/.libs -lgncmod-engine \
|
||||||
|
-L../calculation -L../calculation/.libs -lgncmod-calculation \
|
||||||
|
${GUILE_LIBS} ${GLIB_LIBS}
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
.cvsignore \
|
||||||
|
gnc-dir.h.in
|
||||||
|
|
||||||
|
## We borrow guile's convention and use @-...-@ as the substitution
|
||||||
|
## brackets here, instead of the usual @...@. This prevents autoconf
|
||||||
|
## from substituting the values directly into the left-hand sides of
|
||||||
|
## the sed substitutions.
|
||||||
|
gnc-dir.h: gnc-dir.h.in
|
||||||
|
rm -f $@.tmp
|
||||||
|
sed < $@.in > $@.tmp \
|
||||||
|
-e 's:@-GNC_ACCOUNTS_DIR-@:${GNC_ACCOUNTS_DIR}:g' \
|
||||||
|
-e 's:@-GNC_GLADE_DIR-@:${GNC_GLADE_DIR}:g' \
|
||||||
|
-e 's:@-GNC_PIXMAP_DIR-@:${GNC_PIXMAP_DIR}:g'
|
||||||
|
mv $@.tmp $@
|
||||||
|
BUILT_SOURCES += gnc-dir.h
|
||||||
|
|
||||||
|
# We have to do this because otherwise automake insists on putting
|
||||||
|
# these files into the dist tarfile. If there's a a better way,
|
||||||
|
# by all means, let us know...
|
||||||
|
dist-hook:
|
||||||
|
rm ${distdir}/gnc-dir.h
|
Loading…
Reference in New Issue
Block a user