Mercurial > pidgin
annotate finch/libgnt/Makefile.am @ 18184:f54f83b20929
I believe the great unwashed should be using simpleticket for submitting
bugs, not newticket. Am I wrong?
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Tue, 19 Jun 2007 13:33:26 +0000 |
parents | 7e309149360f |
children | caa25e0ff358 |
rev | line source |
---|---|
15817 | 1 EXTRA_DIST=genmarshal |
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 \ | |
29 gntstyle.c \ | |
30 gnttextview.c \ | |
31 gnttree.c \ | |
32 gntutils.c \ | |
33 gntwindow.c \ | |
34 gntwm.c \ | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16168
diff
changeset
|
35 gntws.c \ |
15817 | 36 gntmain.c |
37 | |
38 libgnt_la_headers = \ | |
39 gntwidget.h \ | |
40 gntbindable.h \ | |
41 gntbox.h \ | |
42 gntbutton.h \ | |
43 gntcheckbox.h \ | |
44 gntclipboard.h \ | |
45 gntcolors.h \ | |
46 gntcombobox.h \ | |
47 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
|
48 gntfilesel.h \ |
15817 | 49 gntkeys.h \ |
50 gntlabel.h \ | |
51 gntline.h \ | |
52 gntmarshal.h \ | |
53 gntmenu.h \ | |
54 gntmenuitem.h \ | |
55 gntmenuitemcheck.h \ | |
56 gntstyle.h \ | |
57 gnttextview.h \ | |
58 gnttree.h \ | |
59 gntutils.h \ | |
60 gntwindow.h \ | |
61 gntwm.h \ | |
17698
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16168
diff
changeset
|
62 gntws.h \ |
15817 | 63 gnt.h |
64 | |
65 CLEANFILES = \ | |
66 gntmarshal.h \ | |
67 gntmarshal.c | |
68 | |
16755
91d0e590e635
gnt should reference genmarshal in the srcdir to allow building in a
Stu Tomlinson <stu@nosnilmot.com>
parents:
16674
diff
changeset
|
69 gntmarshal.c: $(srcdir)/genmarshal gntmarshal.h |
15817 | 70 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
|
71 glib-genmarshal --prefix=gnt_closure_marshal --body $(srcdir)/genmarshal >> $@ |
15817 | 72 |
16755
91d0e590e635
gnt should reference genmarshal in the srcdir to allow building in a
Stu Tomlinson <stu@nosnilmot.com>
parents:
16674
diff
changeset
|
73 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
|
74 glib-genmarshal --prefix=gnt_closure_marshal --header $(srcdir)/genmarshal > $@ |
15817 | 75 |
76 libgnt_laincludedir=$(includedir)/gnt | |
77 libgnt_lainclude_HEADERS = \ | |
78 $(libgnt_la_headers) | |
79 | |
80 libgnt_la_DEPENDENCIES = | |
16674
171acd9ebb1a
Separate so versioning for libgnt.
Richard Laager <rlaager@wiktel.com>
parents:
16168
diff
changeset
|
81 libgnt_la_LDFLAGS = -export-dynamic -version_info $(GNT_LT_VERSION_INFO) -no-undefined |
15817 | 82 libgnt_la_LIBADD = \ |
83 $(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
|
84 $(GNT_LIBS) \ |
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15846
diff
changeset
|
85 $(LIBXML_LIBS) |
15817 | 86 |
87 AM_CPPFLAGS = \ | |
88 $(GLIB_CFLAGS) \ | |
89 $(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
|
90 $(DEBUG_CFLAGS) \ |
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15846
diff
changeset
|
91 $(LIBXML_CFLAGS) |