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

## Process this file with automake to produce Makefile.in
#
# wrap/authmanager/Makefile.am
#
# $Id$
#

module_PROGRAMS = authmanager.so
moduledir       = $(pythondir)/revelation
CLEANFILES      = authmanager.c

AM_LDFLAGS      = `pkg-config --libs gtk+-2.0 pygtk-2.0 libgnomeui-2.0 gnome-vfs-2.0 gnome-keyring-1`
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.


authmanager.c: authmanager.defs authmanager.override
        pygtk-codegen-2.0 --prefix authmanager \
                --override authmanager.override \
                authmanager.defs > $@

authmanager.so: authmanager.o authmanagermodule.o
        $(CC) $(AM_LDFLAGS) -shared $^ -o $@