Blame Makefile.am

Packit 78284e
## Copyright (c) 2009  Openismus GmbH  <http://www.openismus.com/>
Packit 78284e
##
Packit 78284e
## This file is part of pangomm.
Packit 78284e
##
Packit 78284e
## pangomm is free software: you can redistribute it and/or modify it
Packit 78284e
## under the terms of the GNU Lesser General Public License as published
Packit 78284e
## by the Free Software Foundation, either version 2.1 of the License,
Packit 78284e
## or (at your option) any later version.
Packit 78284e
##
Packit 78284e
## pangomm is distributed in the hope that it will be useful, but
Packit 78284e
## WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 78284e
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Packit 78284e
## See the GNU Lesser General Public License for more details.
Packit 78284e
##
Packit 78284e
## You should have received a copy of the GNU Lesser General Public License
Packit 78284e
## along with this library.  If not, see <http://www.gnu.org/licenses/>.
Packit 78284e
Packit 78284e
ACLOCAL_AMFLAGS = -I build ${ACLOCAL_FLAGS}
Packit 78284e
DISTCHECK_CONFIGURE_FLAGS = --enable-warnings=fatal
Packit 78284e
Packit 78284e
if MAINTAINER_MODE
Packit 78284e
src_subdirs = pango/src
Packit 78284e
else
Packit 78284e
src_subdirs =
Packit 78284e
endif
Packit 78284e
if ENABLE_DOCUMENTATION
Packit 78284e
doc_subdirs = docs
Packit 78284e
else
Packit 78284e
doc_subdirs =
Packit 78284e
endif
Packit 78284e
SUBDIRS = tools $(src_subdirs) pango/pangomm $(doc_subdirs)
Packit 78284e
Packit 78284e
pangomm_includedir = $(includedir)/$(PANGOMM_MODULE_NAME)
Packit 78284e
pangomm_include_HEADERS = pango/pangomm.h
Packit 78284e
pangomm_libincludedir = $(libdir)/$(PANGOMM_MODULE_NAME)/include
Packit 78284e
nodist_pangomm_libinclude_HEADERS = pango/pangommconfig.h
Packit 78284e
Packit 78284e
pkgconfigdir = $(libdir)/pkgconfig
Packit 78284e
nodist_pkgconfig_DATA = pango/$(PANGOMM_MODULE_NAME).pc
Packit 78284e
Packit 78284e
include $(srcdir)/MSVC_Net2013/filelist.am
Packit 78284e
Packit 78284e
text_files = COPYING.tools README.SUN README.win32
Packit 78284e
msvc_files = $(addprefix MSVC_Net2013/,$(msvc_net2013_data))
Packit 78284e
Packit 78284e
dist_noinst_DATA = $(text_files) $(msvc_files)
Packit 78284e
dist_noinst_SCRIPTS = autogen.sh
Packit 78284e
Packit 78284e
DISTCLEANFILES = MSVC_Net2013/pangomm/pangommconfig.h
Packit 78284e
Packit 78284e
# Optional: auto-generate the ChangeLog file from the git log on make dist
Packit 78284e
include $(top_srcdir)/build/dist-changelog.am