diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 32 |
1 files changed, 6 insertions, 26 deletions
diff --git a/Makefile.am b/Makefile.am index e3add598e..fb518ea58 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,19 +1,16 @@ ## Process this file with automake to produce Makefile.in -if COMPILE_LIBGCRYPT -gcrypt = gcrypt -my_clean_gcrypt = +if CROSS_COMPILING +checks = else -gcrypt = -my_clean_gcrypt = gcrypt/Makefile +checks = checks endif -SUBDIRS = intl zlib util mpi cipher tools g10 po doc checks ${gcrypt} +SUBDIRS = intl zlib util mpi cipher tools g10 po doc ${checks} EXTRA_DIST = VERSION PROJECTS BUGS # gettext never gets it right, so we take here care of deleting the -# symlink. my_clean_gcrypt is just a kludge until we can include -# libgcrypt. -DISTCLEANFILES = g10defs.h intl/libintl.h ${my_clean_gcrypt} +# symlink. +DISTCLEANFILES = g10defs.h intl/libintl.h dist-hook: @set -e; \ @@ -28,23 +25,6 @@ dist-hook: sed -e 's/@pkg_version@/$(VERSION)/g' \ $(top_srcdir)/scripts/gnupg.spec.in \ > $(distdir)/scripts/gnupg.spec - -rm $(distdir)/gcrypt/*.[ch] -if MAINTAINER_MODE -# This is only useful within my local environment (wk) -cvs-get: - rsync -Cavuzb --exclude scratch --exclude .deps \ - [email protected]:work/gnupg . - -cvs-put: - rsync -Cavuzb --exclude .deps --exclude scratch \ - . [email protected]:work/gnupg - -cvs-sync: cvs-get cvs-put - -endif - - -.PHONY: cvs-get cvs-put cvs-sync |