finch/libgnt/pygnt/Makefile.am

Sat, 18 Aug 2007 05:54:49 +0000

author
William Ehlhardt <williamehlhardt@gmail.com>
date
Sat, 18 Aug 2007 05:54:49 +0000
branch
soc.2007.certmgr
changeset 19489
772b691e901b
parent 19188
5657d0cf1ce0
permissions
-rw-r--r--

- Add purple_certificate_display_x509

19173
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
1 EXTRA_DIST = gendef.sh
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
2
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
3 pg_LTLIBRARIES = gnt.la
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
4
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
5 pgdir = $(libdir)
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
6
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
7 sources = \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
8 gnt.def \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
9 gnt.override \
19185
0af58585b665 This gets rid of more weird crashes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19173
diff changeset
10 gntbox.override \
19173
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
11 gntfilesel.override \
19188
5657d0cf1ce0 Export gnt_widget_get_size for pygnt.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19185
diff changeset
12 gnttree.override \
5657d0cf1ce0 Export gnt_widget_get_size for pygnt.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19185
diff changeset
13 gntwidget.override
19173
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
14
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
15 gnt_la_SOURCES = gnt.c common.c common.h gntmodule.c
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
16
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
17 gnt_la_LDFLAGS = -module -avoid-version \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
18 `pkg-config --libs pygobject-2.0`
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
19
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
20 gnt_la_LIBADD = \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
21 $(GLIB_LIBS) \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
22 ../libgnt.la
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
23
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
24 AM_CPPFLAGS = \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
25 -I../ \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
26 $(GLIB_CFLAGS) \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
27 $(GNT_CFLAGS) \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
28 -I/usr/include/python2.4 \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
29 `pkg-config --cflags pygobject-2.0`
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
30
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
31 CLEANFILES = gnt.def gnt.c gnt.defe
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
32
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
33 gnt.def: $(srcdir)/../*.h
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
34 $(srcdir)/gendef.sh
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
35
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
36 gnt.c: $(sources)
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
37 pygtk-codegen-2.0 --prefix gnt \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
38 --override gnt.override \
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
39 gnt.def > $@
467db4a9cc44 Add some more functions for GntTree. One point to note is that the key
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
40

mercurial