1## Copyright (c) 2009  Joe Hacker <joe@example.com>
2##
3## This file is part of goocanvasmm.
4##
5## goocanvasmm is free software: you can redistribute it and/or modify it
6## under the terms of the GNU Lesser General Public License as published
7## by the Free Software Foundation, either version 2.1 of the License,
8## or (at your option) any later version.
9##
10## goocanvasmm is distributed in the hope that it will be useful, but
11## WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13## See the GNU Lesser General Public License for more details.
14##
15## You should have received a copy of the GNU Lesser General Public License
16## along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18ACLOCAL_AMFLAGS = -I build ${ACLOCAL_FLAGS}
19DISTCHECK_CONFIGURE_FLAGS = --enable-warnings=fatal
20
21if MAINTAINER_MODE
22src_subdirs = codegen goocanvas/src
23else
24src_subdirs =
25endif
26if ENABLE_DOCUMENTATION
27doc_subdirs = doc
28else
29doc_subdirs =
30endif
31SUBDIRS = $(src_subdirs) goocanvas/goocanvasmm $(doc_subdirs) examples tests
32
33goocanvasmm_includedir = $(includedir)/$(GOOCANVASMM_MODULE_NAME)
34goocanvasmm_include_HEADERS = goocanvas/goocanvasmm.h
35goocanvasmm_libincludedir = $(libdir)/$(GOOCANVASMM_MODULE_NAME)/include
36nodist_goocanvasmm_libinclude_HEADERS = goocanvas/goocanvasmmconfig.h
37
38pkgconfigdir = $(libdir)/pkgconfig
39pkgconfig_DATA = goocanvas/$(GOOCANVASMM_MODULE_NAME).pc
40
41dist_noinst_SCRIPTS = autogen.sh
42
43# I do not want some crappy generated ChangeLog based on random vague commit
44# messages that can't be corrected later. I fight entropy. murrayc.
45#include $(top_srcdir)/build/dist-changelog.am
46