mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* goffice/*/Makefile.am: * libgsf/*/Makefile.am: don't install goffice and gsf headers. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12347 57a11ea4-9604-0410-9ed3-97b8803252fd
68 lines
1.8 KiB
Makefile
68 lines
1.8 KiB
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/lib/libgsf-1.12.3 \
|
|
-I$(top_srcdir)/lib/goffice-0.0.4 \
|
|
-I$(top_builddir)/lib/goffice-0.0.4 \
|
|
$(WARN_CFLAGS) \
|
|
$(GOFFICE_DEPS_CFLAGS) \
|
|
-DFOOCANVASLIBDIR=\""$(libdir)"\" \
|
|
-DFOOCANVASDATADIR=\""$(datadir)"\" \
|
|
-DFOOCANVASPIXMAPDIR=\""$(datadir)/pixmaps"\" \
|
|
-DFOOCANVASBINDIR=\""$(bindir)"\" \
|
|
-DFOOCANVASLOCALSTATEDIR=\""$(localstatedir)"\" \
|
|
-DFOOCANVASLOCALEDIR=\""$(gnomelocaledir)"\" \
|
|
-DG_LOG_DOMAIN=\"Foocanvas\" \
|
|
-DVERSION=\"$(VERSION)\"
|
|
|
|
noinst_LTLIBRARIES = libfoocanvas.la
|
|
|
|
libfoocanvas_la_LIBADD = \
|
|
$(RENDER_LIBS) \
|
|
$(LIBFOOCANVAS_LIBS)
|
|
|
|
libfoocanvasincludedir = $(includedir)/libgoffice-1/goffice/cut-n-paste/foocanvas/
|
|
|
|
noinst_HEADERS = \
|
|
foo-canvas-line.h \
|
|
foo-canvas-pixbuf.h \
|
|
foo-canvas-polygon.h \
|
|
foo-canvas-rect-ellipse.h \
|
|
foo-canvas-text.h \
|
|
foo-canvas-util.h \
|
|
foo-canvas-widget.h \
|
|
foo-canvas.h \
|
|
libfoocanvas.h
|
|
|
|
libfoocanvas_la_SOURCES = \
|
|
foo-canvas-marshal.list \
|
|
foo-canvas-i18n.h \
|
|
foo-canvas-line.c \
|
|
foo-canvas-pixbuf.c \
|
|
foo-canvas-polygon.c \
|
|
foo-canvas-rect-ellipse.c \
|
|
foo-canvas-text.c \
|
|
foo-canvas-util.c \
|
|
foo-canvas-widget.c \
|
|
foo-canvas.c \
|
|
libfoocanvastypes.c
|
|
|
|
GENMARSHAL_COMMAND = $(GLIB_GENMARSHAL) --prefix=foo_canvas_marshal
|
|
SUFFIXES = .list
|
|
|
|
.list.h:
|
|
$(GENMARSHAL_COMMAND) --header $< >$@
|
|
|
|
.list.c:
|
|
(echo '/* This file has been automatically generated. Do not edit. */' && \
|
|
echo '#include <goffice/goffice-config.h>' && \
|
|
echo '#include "$*.h"' && \
|
|
$(GENMARSHAL_COMMAND) --body $< ) >$@
|
|
|
|
# A hint is needed to build the header first:
|
|
BUILT_SOURCES = foo-canvas-marshal.h
|
|
|
|
# Another hint, see bugs #172211 and #172212:
|
|
non-intermediate: foo-canvas-marshal.c
|
|
|
|
CLEANFILES = foo-canvas-marshal.h foo-canvas-marshal.c
|
|
|