~vcs-imports/pangomm/trunk

35 by Daniel Elstner
Begin transition to mm-common build system
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
41 by Daniel Elstner
Rename scripts/ subdirectory to build/
18
ACLOCAL_AMFLAGS = -I build ${ACLOCAL_FLAGS}
35 by Daniel Elstner
Begin transition to mm-common build system
19
DISTCHECK_CONFIGURE_FLAGS = --enable-warnings=fatal
20
37 by Daniel Elstner
Convert tools/ and pango/ to new infrastructure
21
if MAINTAINER_MODE
100 by Kalev Lember
Install the m4 files without --enable-maintainer-mode
22
src_subdirs = pango/src
37 by Daniel Elstner
Convert tools/ and pango/ to new infrastructure
23
else
24
src_subdirs =
25
endif
38 by Daniel Elstner
Further reduce pointless make recursion
26
if ENABLE_DOCUMENTATION
27
doc_subdirs = docs
28
else
29
doc_subdirs =
30
endif
100 by Kalev Lember
Install the m4 files without --enable-maintainer-mode
31
SUBDIRS = tools $(src_subdirs) pango/pangomm $(doc_subdirs)
38 by Daniel Elstner
Further reduce pointless make recursion
32
47 by Daniel Elstner
Install pangomm.h and pangomm-1.4.pc again
33
pangomm_includedir = $(includedir)/$(PANGOMM_MODULE_NAME)
34
pangomm_include_HEADERS = pango/pangomm.h
35
pangomm_libincludedir = $(libdir)/$(PANGOMM_MODULE_NAME)/include
36
nodist_pangomm_libinclude_HEADERS = pango/pangommconfig.h
37
38
pkgconfigdir = $(libdir)/pkgconfig
39
nodist_pkgconfig_DATA = pango/$(PANGOMM_MODULE_NAME).pc
40
173 by Chun-wei Fan
Visual Studio builds: Require Visual Studio 2017
41
include $(srcdir)/MSVC_Net2017/filelist.am
38 by Daniel Elstner
Further reduce pointless make recursion
42
40 by Daniel Elstner
Delete obsolete Autoconf M4 files from scripts/
43
text_files = COPYING.tools README.SUN README.win32
173 by Chun-wei Fan
Visual Studio builds: Require Visual Studio 2017
44
msvc_files = $(addprefix MSVC_Net2017/,$(msvc_net2017_data))
38 by Daniel Elstner
Further reduce pointless make recursion
45
46
dist_noinst_DATA = $(text_files) $(msvc_files)
37 by Daniel Elstner
Convert tools/ and pango/ to new infrastructure
47
dist_noinst_SCRIPTS = autogen.sh
38 by Daniel Elstner
Further reduce pointless make recursion
48
173 by Chun-wei Fan
Visual Studio builds: Require Visual Studio 2017
49
DISTCLEANFILES = MSVC_Net2017/pangomm/pangommconfig.h
111 by José Alburquerque
Auto-generate the ChangeLog from the git log for 'make dist'.
50
51
# Optional: auto-generate the ChangeLog file from the git log on make dist
52
include $(top_srcdir)/build/dist-changelog.am