1## Copyright (c) 2009 Openismus GmbH <http://www.openismus.com/> 2## 3## This file is part of pangomm. 4## 5## pangomm 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## pangomm 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 library. 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 = pango/src 23else 24src_subdirs = 25endif 26if ENABLE_DOCUMENTATION 27doc_subdirs = docs 28else 29doc_subdirs = 30endif 31SUBDIRS = tools $(src_subdirs) pango/pangomm $(doc_subdirs) 32 33pangomm_includedir = $(includedir)/$(PANGOMM_MODULE_NAME) 34pangomm_include_HEADERS = pango/pangomm.h 35pangomm_libincludedir = $(libdir)/$(PANGOMM_MODULE_NAME)/include 36nodist_pangomm_libinclude_HEADERS = pango/pangommconfig.h 37 38pkgconfigdir = $(libdir)/pkgconfig 39nodist_pkgconfig_DATA = pango/$(PANGOMM_MODULE_NAME).pc 40 41include $(srcdir)/MSVC_Net2013/filelist.am 42 43text_files = COPYING.tools README.SUN README.win32 44msvc_files = $(addprefix MSVC_Net2013/,$(msvc_net2013_data)) 45 46dist_noinst_DATA = $(text_files) $(msvc_files) 47dist_noinst_SCRIPTS = autogen.sh 48 49DISTCLEANFILES = MSVC_Net2013/pangomm/pangommconfig.h 50 51# Optional: auto-generate the ChangeLog file from the git log on make dist 52include $(top_srcdir)/build/dist-changelog.am 53