Mercurial > pidgin.yaz
annotate finch/libgnt/Makefile.am @ 22217:ad357ca94de9
We will probably eventually use purple_object_[get|set]_ui_data. Until then, this will do.
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Sat, 26 Jan 2008 22:33:08 +0000 |
| parents | 73aab5bdd830 |
| children | 35621ae24544 60f5abc6cf0c |
| 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 |
| 15818 | 2 |
|
18074
7e309149360f
Make the irssi wm work.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18069
diff
changeset
|
3 SUBDIRS = . wms |
| 15818 | 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:
15847
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:
15847
diff
changeset
|
10 |
| 15818 | 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 \ | |
|
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
|
22 gntfilesel.c \ |
| 15818 | 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 \ |
| 15818 | 30 gntstyle.c \ |
| 31 gnttextview.c \ | |
| 32 gnttree.c \ | |
| 33 gntutils.c \ | |
| 34 gntwindow.c \ | |
| 35 gntwm.c \ | |
|
16414
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16168
diff
changeset
|
36 gntws.c \ |
| 15818 | 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 \ | |
|
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
|
49 gntfilesel.h \ |
| 15818 | 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 \ |
| 15818 | 58 gntstyle.h \ |
| 59 gnttextview.h \ | |
| 60 gnttree.h \ | |
| 61 gntutils.h \ | |
| 62 gntwindow.h \ | |
| 63 gntwm.h \ | |
|
16414
56d2ae9cbb5c
Initial workspace support. refs #51
Richard Nelson <wabz@pidgin.im>
parents:
16168
diff
changeset
|
64 gntws.h \ |
| 15818 | 65 gnt.h |
| 66 | |
| 67 CLEANFILES = \ | |
| 68 gntmarshal.h \ | |
| 69 gntmarshal.c | |
| 70 | |
|
16766
91d0e590e635
gnt should reference genmarshal in the srcdir to allow building in a
Stu Tomlinson <stu@nosnilmot.com>
parents:
16682
diff
changeset
|
71 gntmarshal.c: $(srcdir)/genmarshal gntmarshal.h |
| 15818 | 72 echo "#include \"gntmarshal.h\"" > $@ |
|
17188
36f97c87e980
Remove a Useless Use Of Cat (tm) (which might actually help Alver's IRIX
Stu Tomlinson <stu@nosnilmot.com>
parents:
16766
diff
changeset
|
73 glib-genmarshal --prefix=gnt_closure_marshal --body $(srcdir)/genmarshal >> $@ |
| 15818 | 74 |
|
16766
91d0e590e635
gnt should reference genmarshal in the srcdir to allow building in a
Stu Tomlinson <stu@nosnilmot.com>
parents:
16682
diff
changeset
|
75 gntmarshal.h: $(srcdir)/genmarshal |
|
17188
36f97c87e980
Remove a Useless Use Of Cat (tm) (which might actually help Alver's IRIX
Stu Tomlinson <stu@nosnilmot.com>
parents:
16766
diff
changeset
|
76 glib-genmarshal --prefix=gnt_closure_marshal --header $(srcdir)/genmarshal > $@ |
| 15818 | 77 |
| 78 libgnt_laincludedir=$(includedir)/gnt | |
| 79 libgnt_lainclude_HEADERS = \ | |
| 80 $(libgnt_la_headers) | |
| 81 | |
| 82 libgnt_la_DEPENDENCIES = | |
|
16682
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 |
| 15818 | 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:
15847
diff
changeset
|
86 $(GNT_LIBS) \ |
|
21800
73aab5bdd830
Allow loading python scripts at runtime.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19995
diff
changeset
|
87 $(LIBXML_LIBS) \ |
|
73aab5bdd830
Allow loading python scripts at runtime.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19995
diff
changeset
|
88 $(PY_LIBS) |
| 15818 | 89 |
| 90 AM_CPPFLAGS = \ | |
| 91 $(GLIB_CFLAGS) \ | |
| 92 $(GNT_CFLAGS) \ | |
|
16125
5f204f55af09
Add a utility function to create widgets from an XML description.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15847
diff
changeset
|
93 $(DEBUG_CFLAGS) \ |
|
21800
73aab5bdd830
Allow loading python scripts at runtime.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19995
diff
changeset
|
94 $(LIBXML_CFLAGS) \ |
|
73aab5bdd830
Allow loading python scripts at runtime.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19995
diff
changeset
|
95 $(PY_CFLAGS) |
