Mercurial > pidgin.yaz
annotate finch/libgnt/Makefile.am @ 16015:de619a9523f9
sf patch #1694728, from Andrew Gaul
plug 2 memleaks when setting icons. One of them
was leaking the size of the icon for Yahoo!, the other
was leaking a patch to an icon on the local file
system for oscar. Fantastico
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 08 Apr 2007 22:29:42 +0000 |
parents | a2ab257116ce |
children | 5f204f55af09 1a64f972865c |
rev | line source |
---|---|
15818 | 1 EXTRA_DIST=genmarshal |
2 | |
3 SUBDIRS = . wms | |
4 pkgconfigdir = $(libdir)/pkgconfig | |
5 pkgconfig_DATA = gnt.pc | |
6 | |
7 lib_LTLIBRARIES = libgnt.la | |
8 | |
9 libgnt_la_SOURCES = \ | |
10 gntmarshal.c \ | |
11 gntwidget.c \ | |
12 gntbindable.c \ | |
13 gntbox.c \ | |
14 gntbutton.c \ | |
15 gntcheckbox.c \ | |
16 gntclipboard.c \ | |
17 gntcolors.c \ | |
18 gntcombobox.c \ | |
19 gntentry.c \ | |
15847
a2ab257116ce
File selector dialog. Still in an experimental state. When properly complete, this can be used for file/folder-request etc.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
20 gntfilesel.c \ |
15818 | 21 gntkeys.c \ |
22 gntlabel.c \ | |
23 gntline.c \ | |
24 gntmenu.c \ | |
25 gntmenuitem.c \ | |
26 gntmenuitemcheck.c \ | |
27 gntstyle.c \ | |
28 gnttextview.c \ | |
29 gnttree.c \ | |
30 gntutils.c \ | |
31 gntwindow.c \ | |
32 gntwm.c \ | |
33 gntmain.c | |
34 | |
35 libgnt_la_headers = \ | |
36 gntwidget.h \ | |
37 gntbindable.h \ | |
38 gntbox.h \ | |
39 gntbutton.h \ | |
40 gntcheckbox.h \ | |
41 gntclipboard.h \ | |
42 gntcolors.h \ | |
43 gntcombobox.h \ | |
44 gntentry.h \ | |
15847
a2ab257116ce
File selector dialog. Still in an experimental state. When properly complete, this can be used for file/folder-request etc.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
45 gntfilesel.h \ |
15818 | 46 gntkeys.h \ |
47 gntlabel.h \ | |
48 gntline.h \ | |
49 gntmarshal.h \ | |
50 gntmenu.h \ | |
51 gntmenuitem.h \ | |
52 gntmenuitemcheck.h \ | |
53 gntstyle.h \ | |
54 gnttextview.h \ | |
55 gnttree.h \ | |
56 gntutils.h \ | |
57 gntwindow.h \ | |
58 gntwm.h \ | |
59 gnt.h | |
60 | |
61 CLEANFILES = \ | |
62 gntmarshal.h \ | |
63 gntmarshal.c | |
64 | |
65 gntmarshal.c: genmarshal gntmarshal.h | |
66 echo "#include \"gntmarshal.h\"" > $@ | |
67 cat genmarshal | glib-genmarshal --prefix=gnt_closure_marshal --body >> $@ | |
68 | |
69 gntmarshal.h: genmarshal | |
70 cat genmarshal | glib-genmarshal --prefix=gnt_closure_marshal --header > $@ | |
71 | |
72 libgnt_laincludedir=$(includedir)/gnt | |
73 libgnt_lainclude_HEADERS = \ | |
74 $(libgnt_la_headers) | |
75 | |
76 libgnt_la_DEPENDENCIES = | |
77 libgnt_la_LDFLAGS = -export-dynamic | |
78 libgnt_la_LIBADD = \ | |
79 $(GLIB_LIBS) \ | |
80 $(GNT_LIBS) | |
81 | |
82 AM_CPPFLAGS = \ | |
83 $(GLIB_CFLAGS) \ | |
84 $(GNT_CFLAGS) \ | |
85 $(DEBUG_CFLAGS) |