diff options
author | Werner Koch <[email protected]> | 2000-12-19 18:28:36 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-12-19 18:28:36 +0000 |
commit | 613c15be887013b20ba98396768508e92424f123 (patch) | |
tree | b46e67687ed78d9b8cd01ad64dc727ecbc68afb4 /Makefile.am | |
parent | Removed libgcrypt doc files (diff) | |
download | gnupg-613c15be887013b20ba98396768508e92424f123.tar.gz gnupg-613c15be887013b20ba98396768508e92424f123.zip |
Removed the libgcrypt stuff and started to modify the source to work with
that external library.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/Makefile.am b/Makefile.am index 829715459..4ad462f95 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,16 +1,5 @@ ## Process this file with automake to produce Makefile.in -#if COMPILE_LIBGCRYPT -#gcrypt = gcrypt -#my_clean_gcrypt = -#else -#gcrypt = -#my_clean_gcrypt = gcrypt/Makefile -#endif - -gcrypt = gcrypt -my_clean_gcrypt = - if CROSS_COMPILING checks = else @@ -23,13 +12,13 @@ else agent = endif -SUBDIRS = intl zlib jnlib util mpi cipher ${gcrypt} g10 po tools \ +SUBDIRS = intl zlib jnlib util g10 po tools \ ${agent} doc ${checks} EXTRA_DIST = README-alpha 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 = gnupg-defs.h intl/libintl.h ${my_clean_gcrypt} +DISTCLEANFILES = gnupg-defs.h intl/libintl.h # Add all the files listed in "distfiles" files to the distribution, @@ -51,20 +40,4 @@ dist-hook: echo "$(VERSION)" > $(distdir)/VERSION -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 |