1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1785 2009-02-08 23:32:52Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2008, 2009 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 | CLEANFILES = yat.pc yat-config |
---|
28 | |
---|
29 | EXTRA_DIST = yat-config.in yat.pc.in |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | edit = $(SED) \ |
---|
34 | -e 's|@SHELL[@]|$(SHELL)|g' \ |
---|
35 | -e 's|@prefix[@]|$(prefix)|g' \ |
---|
36 | -e 's|@exec_prefix[@]|$(exec_prefix)|g' \ |
---|
37 | -e 's|@bindir[@]|$(bindir)|g' \ |
---|
38 | -e 's|@libdir[@]|$(libdir)|g' \ |
---|
39 | -e 's|@includedir[@]|$(includedir)|g' \ |
---|
40 | -e 's|@CXX[@]|$(CXX)|g' \ |
---|
41 | -e 's|@CXXCPP[@]|$(CXXCPP)|g' \ |
---|
42 | -e 's|@CPPFLAGS[@]|$(CPPFLAGS)|g' \ |
---|
43 | -e 's|@CXXFLAGS[@]|$(CXXFLAGS)|g' \ |
---|
44 | -e 's|@LDFLAGS[@]|$(LDFLAGS)|g' \ |
---|
45 | -e 's|@LIBS[@]|$(LIBS)|g' \ |
---|
46 | -e 's|@EXTRA_CPPFLAGS[@]|$(EXTRA_CPPFLAGS)|g' \ |
---|
47 | -e 's|@EXTRA_CXXFLAGS[@]|$(EXTRA_CXXFLAGS)|g' \ |
---|
48 | -e 's|@EXTRA_LDFLAGS[@]|$(EXTRA_LDFLAGS)|g' \ |
---|
49 | -e 's|@PACKAGE[@]|$(PACKAGE)|g' \ |
---|
50 | -e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \ |
---|
51 | -e 's|@ECHO[@]|$(ECHO)|g' \ |
---|
52 | -e 's|@VERSION[@]|$(VERSION)|g' \ |
---|
53 | -e 's|@YAT_MAJOR_VERSION[@]|$(YAT_MAJOR_VERSION)|g' \ |
---|
54 | -e 's|@YAT_MINOR_VERSION[@]|$(YAT_MINOR_VERSION)|g' \ |
---|
55 | -e 's|@YAT_PATCH_VERSION[@]|$(YAT_PATCH_VERSION)|g' \ |
---|
56 | -e 's|@YAT_DEV_BUILD[@]|$(YAT_DEV_BUILD)|g' \ |
---|
57 | -e 's|@YAT_LIBNAME[@]|$(YAT_LIBNAME)|g' \ |
---|
58 | -e 's|@gsl_version[@]|$(gsl_version)|g' \ |
---|
59 | -e 's|@abs_top_srcdir[@]|$(abs_top_srcdir)|g' \ |
---|
60 | -e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \ |
---|
61 | -e 's|@boost_version[@]|$(boost_version)|g' |
---|
62 | |
---|
63 | yat-config: Makefile $(srcdir)/yat-config.in |
---|
64 | @rm -f $@ $@.tmp |
---|
65 | @$(ECHO) "#! $(SHELL)" > $@.tmp |
---|
66 | @$(ECHO) "# $@ generated by make from yat-config.in" >> $@.tmp |
---|
67 | @$(edit) '$(srcdir)/$@.in' >>$@.tmp |
---|
68 | @chmod +x $@.tmp |
---|
69 | @chmod a-w $@.tmp |
---|
70 | @mv $@.tmp $@ |
---|
71 | @$(ECHO) creating $@ |
---|
72 | |
---|
73 | yat.pc: Makefile $(srcdir)/yat.pc.in |
---|
74 | @rm -f $@ $@.tmp |
---|
75 | @$(ECHO) "# $@ generated by make from yat.pc.in" > $@.tmp |
---|
76 | @$(edit) '$(srcdir)/$@.in' >>$@.tmp |
---|
77 | @chmod a-w $@.tmp |
---|
78 | @mv $@.tmp $@ |
---|
79 | @$(ECHO) creating $@ |
---|
80 | |
---|
81 | install-exec-hook: |
---|
82 | $(SED) 's|installed=no|installed=yes|g' \ |
---|
83 | $(DESTDIR)/$(bindir)/yat-config > $(DESTDIR)/$(bindir)/yat-config.tmp |
---|
84 | $(INSTALL) $(DESTDIR)/$(bindir)/yat-config.tmp $(DESTDIR)/$(bindir)/yat-config |
---|
85 | rm -f $(DESTDIR)/$(bindir)/yat-config.tmp |
---|
86 | |
---|