Re: [Passwordsafe-devel] re passwordsafe under RHEL5 (and wtf re the forum)
Popular easy-to-use and secure password manager
Brought to you by:
ronys
From: <ra...@he...> - 2010-12-22 14:23:58
|
--- Makefile.linux.orig 2010-11-24 15:03:26.000000000 -0600 +++ Makefile.linux 2010-12-22 07:57:11.000000000 -0600 @@ -18,7 +18,10 @@ deb: $(MAKE) -C install/deb -.PHONY: all clean reallyclean debug release unicodedebug unicoderelease deb +help: + $(MAKE) -f Makefile.linux -C help + +.PHONY: all clean reallyclean debug release unicodedebug unicoderelease deb help # Local variables: # mode: makefile # End: --- help/Makefile.linux.orig 2010-12-22 07:58:42.000000000 -0600 +++ help/Makefile.linux 2010-12-22 08:01:05.000000000 -0600 @@ -0,0 +1,18 @@ +# +# Makefile to compile all versions of the pwsafe help for linux +# +# The resulting help.zip file for your locale should be copied to +# /usr/share/doc/passwordsafe/help/help.zip +# + +HELP_DIRS := default pwsafeDE pwsafeFR pwsafeRU pwsafeES + +.PHONY: all + +all: + -@(for d in $(HELP_DIRS); do \ + echo "(cd $$d; zip -r help ./* -x \*/.svn/\*)" ; \ + (cd $$d; zip -r help ./* -x \*/.svn/\* > /dev/null) ; \ + done) + + |