Mercurial > pidgin
annotate finch/libgnt/Makefile.am @ 20803:371f590b9657
Thanks deryni.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 06 Oct 2007 21:22:19 +0000 |
parents | 1868e301b44d |
children | 73aab5bdd830 |
rev | line source |
---|---|
19995
1868e301b44d
Don't fail on distcheck.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18353
diff
changeset
|
1 EXTRA_DIST=genmarshal pygnt |
15817 | 2 |
18074
7e309149360f
Make the irssi wm work.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18069
diff
changeset
|
3 SUBDIRS = . wms |
15817 | 4 pkgconfigdir = $(libdir)/pkgconfig |
5 pkgconfig_DATA = gnt.pc | |
6 | |
7 lib_LTLIBRARIES = libgnt.la | |
8 | |
16158
1a64f972865c
Add BUILT_SOURCES to libgnt's Makefile.am. Patch from sadrul to fix the
Stu Tomlinson <stu@nosnilmot.com>
parents:
15846
diff
changeset
|
9 BUILT_SOURCES = gntmarshal.h |
1a64f972865c
Add BUILT_SOURCES to libgnt's Makefile.am. Patch from sadrul to fix the
Stu Tomlinson <stu@nosnilmot.com>
parents:
15846
diff
changeset
|
10 |
15817 | 11 libgnt_la_SOURCES = \ |
12 gntmarshal.c \ | |
13 gntwidget.c \ | |
14 gntbindable.c \ | |
15 gntbox.c \ | |
16 gntbutton.c \ | |
17 gntcheckbox.c \ | |
18 gntclipboard.c \ | |
19 gntcolors.c \ | |
20 gntcombobox.c \ | |
21 gntentry.c \ | |
15846
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:
15817
diff
changeset
|
22 gntfilesel.c \ |
15817 | 23 gntkeys.c \ |
24 gntlabel.c \ | |
25 gntline.c \ | |
26 gntmenu.c \ | |
27 gntmenuitem.c \ | |
28 gntmenuitemcheck.c \ | |
18353
caa25e0ff358
Build the slider widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18074
diff
changeset
|
29 gntslider.c \ |
15817 | 30 gntstyle.c \ |
31 gnttextview.c \ | |
32 gnttree.c \ | |
33 gntutils.c \ | |
34 gntwindow.c \ | |
35 gntwm.c \ | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16168
diff
changeset
|
36 gntws.c \ |
15817 | 37 gntmain.c |
38 | |
39 libgnt_la_headers = \ | |
40 gntwidget.h \ | |
41 gntbindable.h \ | |
42 gntbox.h \ | |
43 gntbutton.h \ | |
44 gntcheckbox.h \ | |
45 gntclipboard.h \ | |
46 gntcolors.h \ | |
47 gntcombobox.h \ | |
48 gntentry.h \ | |
15846
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:
15817
diff
changeset
|
49 gntfilesel.h \ |
15817 | 50 gntkeys.h \ |
51 gntlabel.h \ | |
52 gntline.h \ | |
53 gntmarshal.h \ | |
54 gntmenu.h \ | |
55 gntmenuitem.h \ | |
56 gntmenuitemcheck.h \ | |
18353
caa25e0ff358
Build the slider widget.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18074
diff
changeset
|
57 gntslider.h \ |
15817 | 58 gntstyle.h \ |
59 gnttextview.h \ | |
60 gnttree.h \ | |
61 gntutils.h \ | |
62 gntwindow.h \ | |
63 gntwm.h \ | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16168
diff
changeset
|
64 gntws.h \ |
15817 | 65 gnt.h |
66 | |
67 CLEANFILES = \ | |
68 gntmarshal.h \ | |
69 gntmarshal.c | |
70 | |
16755
91d0e590e635
gnt should reference genmarshal in the srcdir to allow building in a
Stu Tomlinson <stu@nosnilmot.com>
parents:
16674
diff
changeset
|
71 gntmarshal.c: $(srcdir)/genmarshal gntmarshal.h |
15817 | 72 echo "#include \"gntmarshal.h\"" > $@ |
17155
36f97c87e980
Remove a Useless Use Of Cat (tm) (which might actually help Alver's IRIX
Stu Tomlinson <stu@nosnilmot.com>
parents:
16755
diff
changeset
|
73 glib-genmarshal --prefix=gnt_closure_marshal --body $(srcdir)/genmarshal >> $@ |
15817 | 74 |
16755
91d0e590e635
gnt should reference genmarshal in the srcdir to allow building in a
Stu Tomlinson <stu@nosnilmot.com>
parents:
16674
diff
changeset
|
75 gntmarshal.h: $(srcdir)/genmarshal |
17155
36f97c87e980
Remove a Useless Use Of Cat (tm) (which might actually help Alver's IRIX
Stu Tomlinson <stu@nosnilmot.com>
parents:
16755
diff
changeset
|
76 glib-genmarshal --prefix=gnt_closure_marshal --header $(srcdir)/genmarshal > $@ |
15817 | 77 |
78 libgnt_laincludedir=$(includedir)/gnt | |
79 libgnt_lainclude_HEADERS = \ | |
80 $(libgnt_la_headers) | |
81 | |
82 libgnt_la_DEPENDENCIES = | |
16674
171acd9ebb1a
Separate so versioning for libgnt.
Richard Laager <rlaager@wiktel.com>
parents:
16168
diff
changeset
|
83 libgnt_la_LDFLAGS = -export-dynamic -version_info $(GNT_LT_VERSION_INFO) -no-undefined |
15817 | 84 libgnt_la_LIBADD = \ |
85 $(GLIB_LIBS) \ | |
16125
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15846
diff
changeset
|
86 $(GNT_LIBS) \ |
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15846
diff
changeset
|
87 $(LIBXML_LIBS) |
15817 | 88 |
89 AM_CPPFLAGS = \ | |
90 $(GLIB_CFLAGS) \ | |
91 $(GNT_CFLAGS) \ | |
16125
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15846
diff
changeset
|
92 $(DEBUG_CFLAGS) \ |
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15846
diff
changeset
|
93 $(LIBXML_CFLAGS) |