1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1505 2008-09-16 17:03:27Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2008 Peter Johansson |
---|
6 | # |
---|
7 | # This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
8 | # |
---|
9 | # The yat library is free software; you can redistribute it and/or |
---|
10 | # modify it under the terms of the GNU General Public License as |
---|
11 | # published by the Free Software Foundation; either version 3 of the |
---|
12 | # License, or (at your option) any later version. |
---|
13 | # |
---|
14 | # The yat library is distributed in the hope that it will be useful, |
---|
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | # General Public License for more details. |
---|
18 | # |
---|
19 | # You should have received a copy of the GNU General Public License |
---|
20 | # along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
21 | |
---|
22 | bin_SCRIPTS=yat-config |
---|
23 | |
---|
24 | pkgconfigdir = $(libdir)/pkgconfig |
---|
25 | pkgconfig_DATA= yat.pc |
---|
26 | |
---|
27 | aclocaldir = $(datadir)/aclocal |
---|
28 | aclocal_DATA = yat.m4 |
---|
29 | |
---|
30 | CLEANFILES = yat.pc yat-config |
---|
31 | |
---|
32 | EXTRA_DIST = yat.m4 yat-config.in yat.pc.in |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | edit = sed \ |
---|
37 | -e 's|@SHELL[@]|$(SHELL)|g' \ |
---|
38 | -e 's|@prefix[@]|$(prefix)|g' \ |
---|
39 | -e 's|@exec_prefix[@]|$(exec_prefix)|g' \ |
---|
40 | -e 's|@bindir[@]|$(bindir)|g' \ |
---|
41 | -e 's|@libdir[@]|$(libdir)|g' \ |
---|
42 | -e 's|@includedir[@]|$(includedir)|g' \ |
---|
43 | -e 's|@CXX[@]|$(CXX)|g' \ |
---|
44 | -e 's|@CXXCPP[@]|$(CXXCPP)|g' \ |
---|
45 | -e 's|@CPPFLAGS[@]|$(CPPFLAGS)|g' \ |
---|
46 | -e 's|@CXXFLAGS[@]|$(CXXFLAGS)|g' \ |
---|
47 | -e 's|@LDFLAGS[@]|$(LDFLAGS)|g' \ |
---|
48 | -e 's|@LIBS[@]|$(LIBS)|g' \ |
---|
49 | -e 's|@EXTRA_CPPFLAGS[@]|$(EXTRA_CPPFLAGS)|g' \ |
---|
50 | -e 's|@EXTRA_CXXFLAGS[@]|$(EXTRA_CXXFLAGS)|g' \ |
---|
51 | -e 's|@EXTRA_LDFLAGS[@]|$(EXTRA_LDFLAGS)|g' \ |
---|
52 | -e 's|@PACKAGE[@]|$(PACKAGE)|g' \ |
---|
53 | -e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \ |
---|
54 | -e 's|@ECHO[@]|$(ECHO)|g' \ |
---|
55 | -e 's|@VERSION[@]|$(VERSION)|g' \ |
---|
56 | -e 's|@YAT_MAJOR_VERSION[@]|$(YAT_MAJOR_VERSION)|g' \ |
---|
57 | -e 's|@YAT_MINOR_VERSION[@]|$(YAT_MINOR_VERSION)|g' \ |
---|
58 | -e 's|@YAT_PATCH_VERSION[@]|$(YAT_PATCH_VERSION)|g' \ |
---|
59 | -e 's|@YAT_DEV_BUILD[@]|$(YAT_DEV_BUILD)|g' \ |
---|
60 | -e 's|@YAT_LIBNAME[@]|$(YAT_LIBNAME)|g' \ |
---|
61 | -e 's|@gsl_version[@]|$(gsl_version)|g' \ |
---|
62 | -e 's|@boost_version[@]|$(boost_version)|g' |
---|
63 | |
---|
64 | yat-config: Makefile yat-config.in |
---|
65 | rm -f $@ $@.tmp |
---|
66 | @$(edit) '$(srcdir)/$@.in' >$@.tmp |
---|
67 | chmod +x $@.tmp |
---|
68 | chmod a-w $@.tmp |
---|
69 | mv $@.tmp $@ |
---|
70 | |
---|
71 | yat.pc: Makefile yat.pc.in |
---|
72 | rm -f $@ $@.tmp |
---|
73 | @$(edit) '$(srcdir)/$@.in' >$@.tmp |
---|
74 | chmod a-w $@.tmp |
---|
75 | mv $@.tmp $@ |
---|