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 / wrap / Makefile.am

commit
8d3661dc2974
parent
117efb089a91
branch
default
tags
revelation-0.4.0-pre1

don't use stock module

1
5d99fc2aa75a
bin_PROGRAMS	= authmanager.so
2
5d99fc2aa75a
bindir		= $(pythondir)/revelation
3
5d99fc2aa75a
CLEANFILES	= authmanager.c
4
5d99fc2aa75a
5
5d99fc2aa75a
AM_LDFLAGS	= `pkg-config --libs gtk+-2.0 pygtk-2.0 libgnomeui-2.0 gnome-vfs-2.0 gnome-keyring-1`
6
5d99fc2aa75a
AM_CFLAGS	= `pkg-config --cflags gtk+-2.0 pygtk-2.0 libgnomeui-2.0 gnome-vfs-2.0 gnome-keyring-1` -I${PY_INCLUDE} -I.
7
5d99fc2aa75a
8
5d99fc2aa75a
authmanager.c: authmanager.defs authmanager.override
9
5d99fc2aa75a
	pygtk-codegen-2.0 --prefix authmanager \
10
5d99fc2aa75a
	--override authmanager.override \
11
5d99fc2aa75a
	authmanager.defs > $@
12
5d99fc2aa75a
13
5d99fc2aa75a
authmanager.so: authmanager.o authmanagermodule.o
14
5d99fc2aa75a
	$(CC) $(AM_LDFLAGS) -shared $^ -o $@
15
5d99fc2aa75a