~ubuntu-branches/ubuntu/saucy/atkmm1.6/saucy-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2010-11-02 20:35:53 UTC
  • Revision ID: james.westby@ubuntu.com-20101102203553-syno2w6yedmcdgk8
ImportĀ upstreamĀ versionĀ 2.22.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (c) 2010  Openismus GmbH  <http://www.openismus.com/>
 
2
##
 
3
## This file is part of atkmm.
 
4
##
 
5
## atkmm 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
## atkmm 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 program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
ACLOCAL_AMFLAGS = -I build ${ACLOCAL_FLAGS}
 
19
DISTCHECK_CONFIGURE_FLAGS = --enable-warnings=fatal
 
20
 
 
21
if MAINTAINER_MODE
 
22
src_subdirs = codegen atk/src
 
23
else
 
24
src_subdirs =
 
25
endif
 
26
if ENABLE_DOCUMENTATION
 
27
doc_subdirs = doc
 
28
else
 
29
doc_subdirs =
 
30
endif
 
31
SUBDIRS = $(src_subdirs) atk/atkmm $(doc_subdirs)
 
32
 
 
33
atkmm_includedir = $(includedir)/$(ATKMM_MODULE_NAME)
 
34
atkmm_include_HEADERS = atk/atkmm.h
 
35
 
 
36
atkmm_libincludedir = $(libdir)/$(ATKMM_MODULE_NAME)/include
 
37
nodist_atkmm_libinclude_HEADERS = atk/atkmmconfig.h
 
38
 
 
39
pkgconfigdir = $(libdir)/pkgconfig
 
40
pkgconfig_DATA = atk/$(ATKMM_MODULE_NAME).pc
 
41
 
 
42
include $(srcdir)/MSVC_Net2005/filelist.am
 
43
include $(srcdir)/MSVC_Net2008/filelist.am
 
44
include $(srcdir)/MSVC_Net2010/filelist.am
 
45
 
 
46
text_files = COPYING.tools
 
47
msvc_files = $(addprefix MSVC_Net2005/,$(msvc_net2005_data)) \
 
48
             $(addprefix MSVC_Net2008/,$(msvc_net2008_data)) \
 
49
             $(addprefix MSVC_Net2010/,$(msvc_net2010_data))
 
50
 
 
51
dist_noinst_DATA = $(text_files) $(msvc_files)
 
52
dist_noinst_SCRIPTS = autogen.sh
 
53
 
 
54
DISTCLEANFILES = $(filter %mmconfig.h,$(msvc_files))
 
55
 
 
56
# Auto-generate the ChangeLog file from the git log on make dist
 
57
include $(top_srcdir)/build/dist-changelog.am