1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1440 2011-12-20 04:50:31Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2005, 2006 Jari Häkkinen |
---|
6 | # Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
7 | # Copyright (C) 2009, 2010, 2011 Peter Johansson |
---|
8 | # |
---|
9 | # This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
10 | # |
---|
11 | # svndigest is free software; you can redistribute it and/or modify it |
---|
12 | # under the terms of the GNU General Public License as published by |
---|
13 | # the Free Software Foundation; either version 3 of the License, or |
---|
14 | # (at your option) any later version. |
---|
15 | # |
---|
16 | # svndigest is distributed in the hope that it will be useful, but |
---|
17 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
19 | # General Public License for more details. |
---|
20 | # |
---|
21 | # You should have received a copy of the GNU General Public License |
---|
22 | # along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | |
---|
24 | # -I arg should be the same as arg in AC_CONFIG_MACRO_DIR in configure.ac |
---|
25 | ACLOCAL_AMFLAGS = -I m4 |
---|
26 | |
---|
27 | SUBDIRS = yat lib bin man test |
---|
28 | |
---|
29 | |
---|
30 | lazycheck recheck: all |
---|
31 | cd test && $(MAKE) $(AM_MAKEFLAGS) $@ |
---|
32 | |
---|
33 | clean-local: |
---|
34 | rm -rf svndigest *~ |
---|
35 | |
---|
36 | .PHONY: recheck |
---|
37 | |
---|
38 | ## need to declare these variables here so they can be appended below |
---|
39 | BUILT_SOURCES = |
---|
40 | CLEANFILES = |
---|
41 | CONFIG_STATUS_DEPENDENCIES = |
---|
42 | DISTCLEANFILES = |
---|
43 | EXTRA_DIST = |
---|
44 | |
---|
45 | include $(top_srcdir)/svn_revision.am |
---|
46 | include $(top_srcdir)/svn_revision_header.am |
---|
47 | |
---|
48 | include $(top_srcdir)/svn_release_year.am |
---|
49 | |
---|
50 | ############################################################## |
---|
51 | ## |
---|
52 | ## Some rules useful for maintainer |
---|
53 | ## |
---|
54 | |
---|
55 | include $(srcdir)/maintainer.am |
---|
56 | |
---|
57 | # called within maintainer-check |
---|
58 | ## We do wanna run all tests here since test repository is not |
---|
59 | ## included in tarball, and thus some tests are skiped in distcheck. |
---|
60 | MAINTAINER_CHECK_LOCAL = check |
---|
61 | # extra check in release rule |
---|
62 | RELEASE_LOCAL = check-svn_revision check-readme |
---|
63 | |
---|
64 | .PHONY: check-svn_revision |
---|
65 | |
---|
66 | FORCE: |
---|
67 | |
---|
68 | check-svn_revision: |
---|
69 | @$(SVNVERSION) | $(EGREP) '^[0-9]+$$' || \ |
---|
70 | { echo incorrect svn revision - expected single unmodified revision 1>&2; \ |
---|
71 | exit 1; } |
---|
72 | |
---|
73 | check-readme: |
---|
74 | (ver_am=1.11\ |
---|
75 | && $(GREP) "AM_INIT_AUTOMAKE.*$$ver_am" $(srcdir)/configure.ac \ |
---|
76 | && $(GREP) "Automake $$ver_am" $(srcdir)/README.developer)>/dev/null || exit 1 |
---|
77 | (ver_ac=2.63\ |
---|
78 | && $(GREP) "AC_PREREQ.*$$ver_ac" $(srcdir)/configure.ac \ |
---|
79 | && $(GREP) "Autoconf $$ver_ac" $(srcdir)/README.developer)>/dev/null || exit 1 |
---|
80 | |
---|
81 | |
---|
82 | |
---|
83 | # run in end of release target |
---|
84 | RELEASE_HOOK = build_support/Portfile.diff |
---|
85 | |
---|
86 | macport_url = http://svn.macports.org/repository/macports/trunk/dports/devel/svndigest |
---|
87 | |
---|
88 | build_support/Portfile.diff: build_support/Portfile FORCE |
---|
89 | test -e build_support/macport \ |
---|
90 | || svn co $(macport_url) build_support/macport |
---|
91 | svn revert -R build_support/macport |
---|
92 | svn update build_support/macport |
---|
93 | cp build_support/Portfile build_support/macport/Portfile |
---|
94 | svn diff build_support/macport/Portfile > $@ |
---|
95 | svn revert build_support/macport/Portfile |
---|
96 | |
---|
97 | edit = $(SED) \ |
---|
98 | -e 's|@PACKAGE_URL[@]|$(PACKAGE_URL)|g' \ |
---|
99 | -e 's|@VERSION[@]|$(VERSION)|g' |
---|
100 | |
---|
101 | build_support/Portfile: $(distdir).tar.gz Makefile build_support/Portfile.in |
---|
102 | @rm -f $@ $@.t |
---|
103 | @openssl version > /dev/null || exit 1 |
---|
104 | @openssl sha1 $(distdir).tar.gz > $(distdir).tar.gz.sha1 |
---|
105 | @openssl rmd160 $(distdir).tar.gz > $(distdir).tar.gz.rmd160 |
---|
106 | @sha1=`cut -f 2 -d ' ' $(distdir).tar.gz.sha1`;\ |
---|
107 | rmd160=`cut -f 2 -d ' ' $(distdir).tar.gz.rmd160`;\ |
---|
108 | $(edit) -e "s|@SHA1SUM[@]|$$sha1|g" -e "s|@RMD160SUM[@]|$$rmd160|g" \ |
---|
109 | '$(srcdir)/build_support/Portfile.in' > $@.t |
---|
110 | @chmod a-w $@.t |
---|
111 | @mv $@.t $@ |
---|
112 | @echo "creating $@" |
---|
113 | |
---|
114 | # create a tag from current stable branch; depends on check-version to |
---|
115 | # ensure that version is macro.minor.micro (no pre suffix), that wc is |
---|
116 | # pristine and updated. |
---|
117 | svn-tag: check-version check-svn-diff |
---|
118 | svn copy \ |
---|
119 | ^/branches/$(SVNDIGEST_MAJOR_VERSION).$(SVNDIGEST_MINOR_VERSION)-stable\ |
---|
120 | ^/tags/$(VERSION) -m "tagging version $(VERSION)" |
---|
121 | |
---|
122 | syntax-check: assert-header-without-use \ |
---|
123 | assert-without-header \ |
---|
124 | errno-header-without-use |
---|
125 | |
---|
126 | assert-header-without-use: |
---|
127 | @files=`grep -l "^#include *<cassert>" $(srcdir)/*/*.cc`;\ |
---|
128 | grep -L "assert *(" $$files | grep $(srcdir) && \ |
---|
129 | { echo "$@: in files listed above"; exit 1; } || :; |
---|
130 | |
---|
131 | assert-without-header: |
---|
132 | @files=`grep -l "assert *(" $(srcdir)/*/*.cc`;\ |
---|
133 | grep -L "^#include *<cassert>" $$files | grep $(srcdir) && \ |
---|
134 | { echo "$@: in files listed above"; exit 1; } || :; |
---|
135 | |
---|
136 | errno-header-without-use: |
---|
137 | files=`grep -l "^#include *<cerrno>" $(srcdir)/*/*.cc`;\ |
---|
138 | test -n "$$files" || exit 0;\ |
---|
139 | grep -LE "[^ \t\(=]errno" $$files | grep $(srcdir) && \ |
---|
140 | { echo "$@: in files listed above"; exit 1; } || :; |
---|
141 | |
---|