Erik Grinaker is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.1 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

Revelation / src / Makefile.am

commit
ba434a17e651
parent
e6bf198935fe
branch
default
tags
revelation-0.4.6

set release dates

1
1c96b7e48232
## Process this file with automake to produce Makefile.in
2
1c96b7e48232
#
3
1c96b7e48232
# src/Makefile.am
4
1c96b7e48232
#
5
1c96b7e48232
# $Id$
6
1c96b7e48232
#
7
1c96b7e48232
8
1c56d7845099
SUBDIRS		= lib wrap
9
a207757f8451
bin_SCRIPTS	= revelation
10
e5681e842641
libexec_SCRIPTS	= revelation-applet
11
e5681e842641
CLEANFILES	= revelation revelation-applet
12
a207757f8451
13
1c96b7e48232
14
1c96b7e48232
revelation: revelation.in
15
a207757f8451
	sed \
16
9ed2b9f71fd9
		-e "s|\@pyexecdir\@|$(pyexecdir)|" \
17
a207757f8451
		revelation.in > revelation
18
a207757f8451
19
e5681e842641
revelation-applet: revelation-applet.in
20
e5681e842641
	sed \
21
9c0451b7071b
		-e "s|\@pyexecdir\@|$(pyexecdir)|" \
22
e1e69f9f5cf7
		-e "s|\@bindir\@|$(bindir)|" \
23
e5681e842641
		revelation-applet.in > revelation-applet
24
e5681e842641