mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
It is split into - /libgnucash (for the non-gui bits) - /gnucash (for the gui) - /common (misc source files used by both) - /bindings (currently only holds python bindings) This is the first step in restructuring the code. It will need much more fine tuning later on.
31 lines
840 B
Makefile
31 lines
840 B
Makefile
AM_CPPFLAGS = \
|
|
-I${top_srcdir}/common \
|
|
-I${top_srcdir}/libgnucash/gnc-module \
|
|
${GLIB_CFLAGS} \
|
|
${GUILE_CFLAGS}
|
|
|
|
LDADD = -L../.. -L../../.libs
|
|
|
|
PWD := $(shell pwd)
|
|
check_LTLIBRARIES=libgncmod_futuremodsys.la libgncmod_incompatdep.la libgncmod_agedver.la
|
|
|
|
libgncmod_futuremodsys_la_SOURCES=futuremodsys.c
|
|
libgncmod_futuremodsys_la_LDFLAGS=-rpath ${PWD} -avoid-version -module
|
|
libgncmod_futuremodsys_la_LIBADD = \
|
|
$(GLIB_LIBS)
|
|
|
|
libgncmod_incompatdep_la_SOURCES=incompatdep.c
|
|
libgncmod_incompatdep_la_LDFLAGS=--rpath ${PWD} -avoid-version -module
|
|
libgncmod_incompatdep_la_LIBADD = \
|
|
../../libgnc-module.la \
|
|
$(GLIB_LIBS)
|
|
|
|
libgncmod_agedver_la_SOURCES=agedver.c
|
|
libgncmod_agedver_la_LDFLAGS=-rpath ${PWD} -avoid-version -module
|
|
libgncmod_agedver_la_LIBADD = \
|
|
$(GLIB_LIBS)
|
|
|
|
CLEANFILES = *.so* *.a
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|