gnupg/Makefile.am

51 lines
1.3 KiB
Makefile
Raw Normal View History

1997-11-18 15:06:00 +01:00
## 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
SUBDIRS = intl zlib util mpi cipher tools g10 po doc checks ${gcrypt}
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}
1997-11-18 15:06:00 +01:00
dist-hook:
@set -e; \
1998-10-07 15:30:43 +02:00
for file in `cd $(top_srcdir); find . -type f -name distfiles`; do \
dir=`dirname $$file` ; $(mkinstalldirs) $(distdir)/$$dir ; \
1998-10-07 15:30:43 +02:00
for i in distfiles `cat $(top_srcdir)/$$file` ; do \
ln $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i 2> /dev/null \
|| cp -p $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i; \
done ; \
done
1998-09-18 17:24:53 +02:00
@set -e; \
sed -e 's/@pkg_version@/$(VERSION)/g' \
$(top_srcdir)/scripts/gnupg.spec.in \
> $(distdir)/scripts/gnupg.spec
-rm $(distdir)/gcrypt/*.[ch]
1997-11-18 15:06:00 +01:00
1998-02-18 19:52:59 +01:00
if MAINTAINER_MODE
# This is only useful within my local environment (wk)
1998-10-17 16:47:14 +02:00
cvs-get:
1998-10-25 20:00:01 +01:00
rsync -Cavuzb --exclude scratch --exclude .deps \
wkoch@sigtrap.guug.de:work/gnupg .
1998-10-17 16:47:14 +02:00
cvs-put:
1998-10-25 20:00:01 +01:00
rsync -Cavuzb --exclude .deps --exclude scratch \
. wkoch@sigtrap.guug.de:work/gnupg
1998-10-17 16:47:14 +02:00
cvs-sync: cvs-get cvs-put
endif
1998-10-17 16:47:14 +02:00
1998-10-25 20:00:01 +01:00
1998-10-17 16:47:14 +02:00
.PHONY: cvs-get cvs-put cvs-sync