mirror of https://github.com/Gnucash/gnucash
It's not used and prevents test-core from being included in core-utils tests git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18826 57a11ea4-9604-0410-9ed3-97b8803252fdpull/1/head
parent
3aac125c18
commit
98bfef5845
@ -1,15 +1,12 @@
|
||||
noinst_LTLIBRARIES=libgncmod-test.la
|
||||
noinst_LTLIBRARIES=libtest-core.la
|
||||
|
||||
libgncmod_test_la_SOURCES = gncmod-test.c test-stuff.c
|
||||
libgncmod_test_la_LDFLAGS = -module
|
||||
libgncmod_test_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgnc-module.la \
|
||||
libtest_core_la_SOURCES = test-stuff.c
|
||||
libtest_core_la_LDFLAGS = -module
|
||||
libtest_core_la_LIBADD = \
|
||||
${GLIB_LIBS}
|
||||
|
||||
noinst_HEADERS=test-stuff.h
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I${top_srcdir}/src \
|
||||
-I${top_srcdir}/src/gnc-module \
|
||||
${GLIB_CFLAGS} \
|
||||
${GUILE_INCS}
|
||||
${GLIB_CFLAGS}
|
||||
|
||||
@ -1,47 +0,0 @@
|
||||
/*********************************************************************
|
||||
* gncmod-test.c
|
||||
* module definition/initialization for the test infrastructure
|
||||
*
|
||||
* Copyright (c) 2001 Linux Developers Group, Inc.
|
||||
*********************************************************************/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <gmodule.h>
|
||||
|
||||
#include "gnc-module.h"
|
||||
#include "gnc-module-api.h"
|
||||
|
||||
GNC_MODULE_API_DECL(libgncmod_test)
|
||||
|
||||
/* version of the gnc module system interface we require */
|
||||
int libgncmod_test_gnc_module_system_interface = 0;
|
||||
|
||||
/* module versioning uses libtool semantics. */
|
||||
int libgncmod_test_gnc_module_current = 0;
|
||||
int libgncmod_test_gnc_module_revision = 0;
|
||||
int libgncmod_test_gnc_module_age = 0;
|
||||
|
||||
|
||||
char *
|
||||
libgncmod_test_gnc_module_path(void)
|
||||
{
|
||||
return g_strdup("gnucash/test");
|
||||
}
|
||||
|
||||
char *
|
||||
libgncmod_test_gnc_module_description(void)
|
||||
{
|
||||
return g_strdup("Basic GnuCash test infrastructure.");
|
||||
}
|
||||
|
||||
int
|
||||
libgncmod_test_gnc_module_init(int refcount)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int
|
||||
libgncmod_test_gnc_module_end(int refcount)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
Loading…
Reference in new issue