diff options
author | Werner Koch <wk@gnupg.org> | 1998-10-25 20:00:01 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-10-25 20:00:01 +0100 |
commit | 5ccb92591e5ff9cf90efeb5ef527cf7a5fb08fcf (patch) | |
tree | 241529d030ede38fcdaee1a708c5956693ed159d /Makefile.am | |
parent | Epxerimenta support for GDBM keyings. (diff) | |
download | gnupg2-5ccb92591e5ff9cf90efeb5ef527cf7a5fb08fcf.tar.xz gnupg2-5ccb92591e5ff9cf90efeb5ef527cf7a5fb08fcf.zip |
some random changes
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index c81de2692..567fccdd3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,9 +13,11 @@ g10defs.h : config.h echo "#ifdef __MINGW32__"; \ echo "#define G10_LOCALEDIR \"c:/lib/gnupg/locale\""; \ echo "#define GNUPG_LIBDIR \"c:/lib/gnupg\""; \ + echo "#define GNUPG_DATADIR \"c:/lib/gnupg\""; \ echo "#else";\ echo "#define G10_LOCALEDIR \"$(prefix)/$(DATADIRNAME)/locale\""; \ echo "#define GNUPG_LIBDIR \"$(libdir)/gnupg\""; \ + echo "#define GNUPG_DATADIR \"$(datadir)/gnupg\""; \ echo "#endif";\ ) >g10defs.h @@ -36,13 +38,24 @@ dist-hook: # maintainer only cvs-get: - rsync -avuzb --exclude '*~' koch@ftp.guug.de:work/gnupg . + rsync -Cavuzb --exclude scratch --exclude .deps \ + koch@ftp.guug.de:work/gnupg . cvs-put: - rsync -Cavuzb . koch@ftp.guug.de:work/gnupg + rsync -Cavuzb --exclude .deps --exclude scratch \ + . koch@ftp.guug.de:work/gnupg cvs-sync: cvs-get cvs-put +tobold-get: + rsync -Cavuzb --exclude scratch --exclude .deps \ + tobold:gnupg/ . + +tobold-put: + rsync -Cavuzb --excude scratch --exclude .deps \ + . tobold:gnupg/ + + .PHONY: cvs-get cvs-put cvs-sync |