~siretart/gnucash/ubuntu-fullsource

« back to all changes in this revision

Viewing changes to src/register/register-core/Makefile.am

  • Committer: Reinhard Tartler
  • Date: 2008-08-03 07:25:46 UTC
  • Revision ID: siretart@tauware.de-20080803072546-y6p8xda8zpfi62ys
import gnucash_2.2.4.orig.tar.gz

The original tarball had the md5sum: 27e660297dc5b8ce574515779d05a5a5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = . test
 
2
 
 
3
pkglib_LTLIBRARIES = libgncmod-register-core.la
 
4
 
 
5
libgncmod_register_core_la_LDFLAGS = -avoid-version
 
6
 
 
7
libgncmod_register_core_la_LIBADD = \
 
8
  ${top_builddir}/src/gnc-module/libgnc-module.la \
 
9
  ${top_builddir}/src/engine/libgncmod-engine.la \
 
10
  ${top_builddir}/src/app-utils/libgncmod-app-utils.la \
 
11
  ${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
 
12
  ${GUILE_LIBS} \
 
13
  ${QOF_LIBS} ${GLIB_LIBS}
 
14
 
 
15
libgncmod_register_core_la_SOURCES = \
 
16
  gncmod-register-core.c \
 
17
  basiccell.c \
 
18
  cell-factory.c \
 
19
  cellblock.c \
 
20
  formulacell.c \
 
21
  gtable.c \
 
22
  numcell.c \
 
23
  pricecell.c \
 
24
  quickfillcell.c \
 
25
  recncell.c \
 
26
  checkboxcell.c \
 
27
  register-common.c \
 
28
  table-allgui.c \
 
29
  table-control.c \
 
30
  table-layout.c \
 
31
  table-model.c
 
32
 
 
33
 
 
34
gncincludedir = ${GNC_INCLUDE_DIR}
 
35
gncinclude_HEADERS = \
 
36
  basiccell.h \
 
37
  cell-factory.h \
 
38
  cellblock.h \
 
39
  combocell.h \
 
40
  datecell.h \
 
41
  formulacell.h \
 
42
  gtable.h \
 
43
  numcell.h \
 
44
  pricecell.h \
 
45
  quickfillcell.h \
 
46
  recncell.h \
 
47
  checkboxcell.h \
 
48
  register-common.h \
 
49
  table-allgui.h \
 
50
  table-control.h \
 
51
  table-layout.h \
 
52
  table-model.h
 
53
 
 
54
AM_CFLAGS = \
 
55
  -I${top_srcdir}/src \
 
56
  -I${top_srcdir}/src/engine \
 
57
  -I${top_srcdir}/src/app-utils \
 
58
  -I${top_srcdir}/src/gnc-module \
 
59
  -I${top_srcdir}/src/gnome-utils \
 
60
  ${GUILE_INCS} \
 
61
  ${GLADE_CFLAGS} \
 
62
  ${GNOME_CFLAGS} \
 
63
  ${QOF_CFLAGS} \
 
64
  ${GLIB_CFLAGS}
 
65
 
 
66
CLEANFILES = $(BUILT_SOURCES)
 
67
 
 
68
INCLUDES = -DG_LOG_DOMAIN=\"gnc.register.core\"