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
d1c13e095736
parent
ab267e8bc63d
branch
default

use PYTHON_INCLUDE, not PY_INCLUDE

1
22ce7edb8982
module_PROGRAMS	= authmanager.so
2
22ce7edb8982
moduledir	= $(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
d1c13e095736
AM_CFLAGS	= `pkg-config --cflags gtk+-2.0 pygtk-2.0 libgnomeui-2.0 gnome-vfs-2.0 gnome-keyring-1` -fPIC -I${PYTHON_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