mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Move the splash screen code to another directory.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9052 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
45c6503017
commit
70fdd73706
@ -1,3 +1,9 @@
|
||||
2003-08-10 David Hampton <hampton@employees.org>
|
||||
|
||||
* src/gnome/gnc-splash.[ch]:
|
||||
* src/gnome-utils/gnc-splash.[ch]: Move this code to the
|
||||
gnome-utils directory.
|
||||
|
||||
2003-08-10 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* rpm/Makefile.am: add gnucash.spec to the DIST; clean during
|
||||
|
@ -10,3 +10,4 @@ gw-gnome-utils.html
|
||||
gw-gnome-utils.h
|
||||
gw-gnome-utils.scm
|
||||
gw-gnome-utils.c
|
||||
gnc-version.h
|
||||
|
@ -49,6 +49,7 @@ libgncmod_gnome_utils_la_SOURCES = \
|
||||
gnc-mdi-utils.c \
|
||||
gnc-menu-extensions.c \
|
||||
gnc-query-list.c \
|
||||
gnc-splash.c \
|
||||
gncmod-gnome-utils.c \
|
||||
gtkselect.c \
|
||||
misc-gnome-utils.c \
|
||||
@ -86,6 +87,7 @@ gncinclude_HEADERS = \
|
||||
gnc-mdi-utils.h \
|
||||
gnc-menu-extensions.h \
|
||||
gnc-query-list.h \
|
||||
gnc-splash.h \
|
||||
gtkselect.h \
|
||||
misc-gnome-utils.h \
|
||||
print-session.h \
|
||||
@ -94,6 +96,7 @@ gncinclude_HEADERS = \
|
||||
noinst_HEADERS = \
|
||||
argv-list-converters.h \
|
||||
gnc-dir.h \
|
||||
gnc-version.h \
|
||||
gw-gnome-utils.h \
|
||||
search-param.h
|
||||
|
||||
@ -156,7 +159,22 @@ gnc-dir.h: gnc-dir.h.in ${top_builddir}/config.status
|
||||
-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
|
||||
|
||||
gnc-version.h: _gnc-version.h
|
||||
-[ ! -f gnc-version.h ] && cp _gnc-version.h gnc-version.h
|
||||
-cmp -s _gnc-version.h gnc-version.h || cp _gnc-version.h gnc-version.h
|
||||
-rm -f _gnc-version.h
|
||||
|
||||
_gnc-version.h:
|
||||
@echo "/* Autogenerated. Do not change. */" > _gnc-version.h
|
||||
@echo "#ifndef GNC_VERSION_H" >> _gnc-version.h
|
||||
@echo "#define GNC_VERSION_H" >> _gnc-version.h
|
||||
@echo "" >> _gnc-version.h
|
||||
@echo "#define GNUCASH_BUILD_DATE \"`date +%Y-%m-%d`\"" >> _gnc-version.h
|
||||
@echo "" >> _gnc-version.h
|
||||
@echo "#endif" >> _gnc-version.h
|
||||
|
||||
BUILT_SOURCES = gnc-dir.h gnc-version.h
|
||||
|
||||
if GNUCASH_SEPARATE_BUILDDIR
|
||||
#For compiling
|
||||
|
@ -41,7 +41,6 @@ libgncgnome_la_SOURCES = \
|
||||
druid-hierarchy.c \
|
||||
druid-loan.c \
|
||||
druid-stock-split.c \
|
||||
gnc-splash.c \
|
||||
gnc-split-reg.c \
|
||||
mainwindow-account-tree.c \
|
||||
reconcile-list.c \
|
||||
@ -79,9 +78,7 @@ noinst_HEADERS = \
|
||||
druid-loan.h \
|
||||
druid-stock-split.h \
|
||||
gnc-network.h \
|
||||
gnc-splash.h \
|
||||
gnc-split-reg.h \
|
||||
gnc-version.h \
|
||||
gw-gnc.h \
|
||||
mainwindow-account-tree.h \
|
||||
reconcile-list.h \
|
||||
@ -149,20 +146,6 @@ gnucash.keys: gnucash.keys.in ${top_builddir}/config.status
|
||||
|
||||
noinst_DATA = .scm-links
|
||||
|
||||
gnc-version.h: _gnc-version.h
|
||||
-[ ! -f gnc-version.h ] && cp _gnc-version.h gnc-version.h
|
||||
-cmp -s _gnc-version.h gnc-version.h || cp _gnc-version.h gnc-version.h
|
||||
-rm -f _gnc-version.h
|
||||
|
||||
_gnc-version.h:
|
||||
@echo "/* Autogenerated. Do not change. */" > _gnc-version.h
|
||||
@echo "#ifndef GNC_VERSION_H" >> _gnc-version.h
|
||||
@echo "#define GNC_VERSION_H" >> _gnc-version.h
|
||||
@echo "" >> _gnc-version.h
|
||||
@echo "#define GNUCASH_BUILD_DATE \"`date +%Y-%m-%d`\"" >> _gnc-version.h
|
||||
@echo "" >> _gnc-version.h
|
||||
@echo "#endif" >> _gnc-version.h
|
||||
|
||||
if GNUCASH_SEPARATE_BUILDDIR
|
||||
#For compiling
|
||||
SCM_FILE_LINKS = gw-gnc-spec.scm
|
||||
@ -189,7 +172,7 @@ gw-gnc.scm gw-gnc.h gw-gnc.c gw-gnc.html: \
|
||||
(set! %load-path (cons \"../report/report-gnome\" %load-path)) \
|
||||
(primitive-load \"./gw-gnc-spec.scm\") \
|
||||
(gw:generate-wrapset \"gw-gnc\")"
|
||||
BUILT_SOURCES = gw-gnc.scm gw-gnc.h gw-gnc.c gnc-version.h
|
||||
BUILT_SOURCES = gw-gnc.scm gw-gnc.h gw-gnc.c
|
||||
CLEANFILES = gnucash.keys gnucash.desktop
|
||||
DISTCLEANFILES = gnucash g-wrapped .scm-links ${SCM_FILE_LINKS} \
|
||||
gw-gnc.html
|
||||
|
Loading…
Reference in New Issue
Block a user