Compile with libgcrypt 1.1.13.
[shishi.git] / crypto / Makefile.am
blob49cc5788423249e1a2383c91239ccf6789b21ab2
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 1992, 1999, 2000, 2002 Free Software Foundation, Inc.
4 # This file is part of Libgcrypt.
6 # Libgcrypt is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU Lesser General Public License as
8 # published by the Free Software Foundation; either version 2.1 of
9 # the License, or (at your option) any later version.
11 # Libgcrypt is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
21 DIST_SUBDIRS = mpi cipher src doc tests w32-dll
22 SUBDIRS = mpi cipher src doc tests
23 EXTRA_DIST = README-alpha BUGS autogen.sh COPYING.DOC
24 DISTCLEANFILES = gcrypt-defs.h 
27 # Add all the files listed in "distfiles" files to the distribution,
28 # apply version number s to some files and create a VERSION file which
29 # we need for the Prereq: patch file trick. 
30 dist-hook:
31         @set -e; \
32          for file in `cd $(top_srcdir); \
33               find mpi scripts -type f -name distfiles`; do \
34             dir=`dirname $$file` ; $(mkinstalldirs) $(distdir)/$$dir ; \
35             for i in distfiles `cat $(top_srcdir)/$$file` ; do \
36                 ln $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i 2> /dev/null \
37                 || cp -p $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i; \
38             done ; \
39         done
40         @set -e; \
41         echo "$(VERSION)" > $(distdir)/VERSION