assuan/
[gnupg.git] / Makefile.am
blob4ad462f95273211aeb69dbc38c2ec972f949b7a4
1 ## Process this file with automake to produce Makefile.in
3 if CROSS_COMPILING
4 checks =
5 else
6 checks = checks
7 endif
9 if COMPILE_AGENT
10 agent = agent
11 else
12 agent = 
13 endif
15 SUBDIRS = intl zlib jnlib util g10 po tools \
16           ${agent} doc ${checks}
17 EXTRA_DIST = README-alpha PROJECTS BUGS
18 # gettext never gets it right, so we take here care of deleting the
19 # symlink.  my_clean_gcrypt is just a kludge until we can include
20 # libgcrypt.
21 DISTCLEANFILES = gnupg-defs.h intl/libintl.h 
24 # Add all the files listed in "distfiles" files to the distribution,
25 # apply version number s to some files and create a VERSION file which
26 # we need for the Prereq: patch file trick.
27 dist-hook:
28         @set -e; \
29          for file in `cd $(top_srcdir); find . -type f -name distfiles`; do \
30             dir=`dirname $$file` ; $(mkinstalldirs) $(distdir)/$$dir ; \
31             for i in distfiles `cat $(top_srcdir)/$$file` ; do \
32                 ln $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i 2> /dev/null \
33                 || cp -p $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i; \
34             done ; \
35         done
36         @set -e; \
37         sed -e 's/@pkg_version@/$(VERSION)/g' \
38             $(top_srcdir)/scripts/gnupg.spec.in \
39             > $(distdir)/scripts/gnupg.spec ; \
40         echo "$(VERSION)" > $(distdir)/VERSION