Imported Upstream version 2.99.12 (LGPL3)
[platform/upstream/libsigc++.git] / Makefile.am
1 ## Copyright (c) 2009  Openismus GmbH  <http://www.openismus.com/>
2 ##
3 ## This file is part of libsigc++.
4 ##
5 ## libsigc++ 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 ## libsigc++ 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
18 ACLOCAL_AMFLAGS = -I build ${ACLOCAL_FLAGS}
19
20 if ENABLE_DOCUMENTATION
21 doc_subdirs = docs/docs
22 else
23 doc_subdirs =
24 endif
25 SUBDIRS = sigc++ tests examples cmake $(doc_subdirs)
26
27 sigc_configdir = $(libdir)/$(SIGCXX_MODULE_NAME)/include
28 nodist_sigc_config_HEADERS = sigc++config.h
29
30 pkgconfigdir = $(libdir)/pkgconfig
31 nodist_pkgconfig_DATA = $(SIGCXX_MODULE_NAME).pc
32 noinst_DATA = $(SIGCXX_MODULE_NAME)-uninstalled.pc
33
34 dist_noinst_SCRIPTS = autogen.sh
35
36 include $(srcdir)/MSVC_NMake/filelist.am
37
38 dist_noinst_DATA = $(addprefix MSVC_NMake/,$(msvc_nmake_data)) CMakeLists.txt sigc++config.h.cmake cmake_uninstall.cmake.in
39
40 DISTCLEANFILES = MSVC_NMake/sigc++config.h
41
42 # Optional: auto-generate the ChangeLog file from the git log on make dist
43 include $(top_srcdir)/build/dist-changelog.am