mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
997 B
67 lines
997 B
# Engine Makefile.am file.
|
|
|
|
SUBDIRS = sql
|
|
|
|
# Build a libtool library, libhello.la for installation in libdir.
|
|
lib_LTLIBRARIES = libgncengine.la
|
|
|
|
# Build hell from main.c and libhello.la
|
|
libgncengine_la_SOURCES = \
|
|
AccInfo.c \
|
|
Account.c \
|
|
Backend.c \
|
|
DateUtils.c \
|
|
FileIO.c \
|
|
Group.c \
|
|
LedgerUtils.c \
|
|
Query.c \
|
|
Queue.c \
|
|
Scrub.c \
|
|
Session.c \
|
|
Transaction.c \
|
|
TransLog.c \
|
|
date.c \
|
|
util.c \
|
|
GNCId.c \
|
|
guid.c \
|
|
md5.c
|
|
|
|
libgncengine_la_LDFLAGS = -version-info 1:1:1
|
|
|
|
noinst_HEADERS = \
|
|
AccInfo.h \
|
|
AccInfoP.h \
|
|
Account.h \
|
|
AccountP.h \
|
|
BackendP.h \
|
|
DateUtils.h \
|
|
FileIO.h \
|
|
FileIOP.h \
|
|
GNCId.h \
|
|
GNCIdP.h \
|
|
Group.h \
|
|
GroupP.h \
|
|
LedgerUtils.h \
|
|
Query.h \
|
|
Queue.h \
|
|
Scrub.h \
|
|
Session.h \
|
|
TransLog.h \
|
|
Transaction.h \
|
|
TransactionP.h \
|
|
date.h \
|
|
gnc-common.h \
|
|
guid.h \
|
|
md5.h \
|
|
util.h
|
|
|
|
EXTRA_DIST = \
|
|
.cvsignore \
|
|
README.query-api \
|
|
design.txt \
|
|
extensions.txt
|
|
|
|
CFLAGS = @CFLAGS@ ${GLIB_CFLAGS}
|
|
|
|
INCLUDES = -I..
|