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
75a53bdb5d20
parent
cf608f40f65b
parent
8a2b7cfa374a
branch
default

Automated merge with https://bitbucket.org/urmas/revelation

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
b0d11bf9eca4
SUBDIRS		= bundle lib wrap
9
a207757f8451
bin_SCRIPTS	= revelation
10
e5681e842641
libexec_SCRIPTS	= revelation-applet
11
89256f7e6edd
EXTRA_DIST	= revelation.in revelation-applet.in
12
e5681e842641
CLEANFILES	= revelation revelation-applet
13
a207757f8451
14
1c96b7e48232
15
1c96b7e48232
revelation: revelation.in
16
a207757f8451
	sed \
17
9ed2b9f71fd9
		-e "s|\@pyexecdir\@|$(pyexecdir)|" \
18
a207757f8451
		revelation.in > revelation
19
a207757f8451
20
e5681e842641
revelation-applet: revelation-applet.in
21
e5681e842641
	sed \
22
9c0451b7071b
		-e "s|\@pyexecdir\@|$(pyexecdir)|" \
23
e1e69f9f5cf7
		-e "s|\@bindir\@|$(bindir)|" \
24
e5681e842641
		revelation-applet.in > revelation-applet
25
e5681e842641