]> git.tdb.fi Git - ext/sigc++-2.0.git/blob - Makefile.am
Adjust the name of the library to match upstream
[ext/sigc++-2.0.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
22 else
23 doc_subdirs =
24 endif
25 SUBDIRS = sigc++ tests examples $(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))
39
40 DISTCLEANFILES = MSVC_NMake/sigc++config.h
41
42 # Distribute files needed when building libsigc++ with meson.
43 EXTRA_DIST = \
44   meson.build \
45   meson_options.txt \
46   sigc++config.h.meson \
47   MSVC_NMake/meson.build \
48   docs/manual/can_use_xmllint.xml \
49   docs/manual/meson.build \
50   docs/reference/meson.build \
51   examples/meson.build \
52   sigc++/meson.build \
53   subprojects/mm-common.wrap \
54   tests/meson.build \
55   tools/handle-built-files.py \
56   tools/tutorial-custom-cmd.py \
57   tools/gcc_template_specialization_operator_overload.cc \
58   tools/have_sun_reverse_iterator.cc \
59   tools/msvc_template_specialization_operator_overload.cc \
60   tools/pragma_push_pop_macro.cc \
61   untracked/README
62
63 # Optional: auto-generate the ChangeLog file from the git log on make dist
64 include $(top_srcdir)/build/dist-changelog.am