]> Pileus Git - ~andy/gtk/blob - modules/other/gail/Makefile.am
882f14ed39f38974abc9dcaa4a42a2e0d0fe06de
[~andy/gtk] / modules / other / gail / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 SUBDIRS = libgail-util tests
4
5 if PLATFORM_WIN32
6 no_undefined = -no-undefined
7 endif
8
9 moduledir = $(libdir)/gtk-2.0/modules
10 module_LTLIBRARIES = libgail.la
11
12 gail_c_sources =                        \
13         gail-private-macros.h           \
14         gail.c                          \
15         gailadjustment.c                \
16         gailarrow.c                     \
17         gailbooleancell.c               \
18         gailbox.c                       \
19         gailbutton.c                    \
20         gailcalendar.c                  \
21         gailcell.c                      \
22         gailcellparent.c                \
23         gailcheckmenuitem.c             \
24         gailchecksubmenuitem.c          \
25         gailcombobox.c                  \
26         gailcontainer.c                 \
27         gailcontainercell.c             \
28         gailentry.c                     \
29         gailexpander.c                  \
30         gailframe.c                     \
31         gailimage.c                     \
32         gailimagecell.c                 \
33         gailitem.c                      \
34         gaillabel.c                     \
35         gailmenu.c                      \
36         gailmenushell.c                 \
37         gailmenuitem.c                  \
38         gailnotebook.c                  \
39         gailnotebookpage.c              \
40         gailobject.c                    \
41         gailpaned.c                     \
42         gailprogressbar.c               \
43         gailradiobutton.c               \
44         gailradiomenuitem.c             \
45         gailradiosubmenuitem.c          \
46         gailrange.c                     \
47         gailrenderercell.c              \
48         gailscale.c                     \
49         gailscalebutton.c               \
50         gailscrollbar.c                 \
51         gailscrolledwindow.c            \
52         gailseparator.c                 \
53         gailspinbutton.c                \
54         gailsubmenuitem.c               \
55         gailstatusbar.c                 \
56         gailtextcell.c                  \
57         gailtextview.c                  \
58         gailtogglebutton.c              \
59         gailtoplevel.c                  \
60         gailtreeview.c                  \
61         gailutil.c                      \
62         gailwidget.c                    \
63         gailwindow.c
64
65 libgailincludedir=$(includedir)/gail-1.0/gail
66
67 gail_private_h_sources =                \
68         gail.h                          \
69         gailadjustment.h                \
70         gailarrow.h                     \
71         gailbooleancell.h               \
72         gailbox.h                       \
73         gailbutton.h                    \
74         gailcalendar.h                  \
75         gailcell.h                      \
76         gailcellparent.h                \
77         gailcheckmenuitem.h             \
78         gailchecksubmenuitem.h          \
79         gailcombobox.h                  \
80         gailcontainercell.h             \
81         gailcontainer.h                 \
82         gailentry.h                     \
83         gailexpander.h                  \
84         gailfactory.h                   \
85         gailframe.h                     \
86         gailimage.h                     \
87         gailimagecell.h                 \
88         gailitem.h                      \
89         gaillabel.h                     \
90         gaillist.h                      \
91         gailmenu.h                      \
92         gailmenushell.h                 \
93         gailmenuitem.h                  \
94         gailnotebook.h                  \
95         gailnotebookpage.h              \
96         gailobject.h                    \
97         gailpaned.h                     \
98         gailprogressbar.h               \
99         gailradiobutton.h               \
100         gailradiomenuitem.h             \
101         gailradiosubmenuitem.h          \
102         gailrange.h                     \
103         gailrenderercell.h              \
104         gailscale.h                     \
105         gailscalebutton.h               \
106         gailscrollbar.h                 \
107         gailscrolledwindow.h            \
108         gailseparator.h                 \
109         gailspinbutton.h                \
110         gailsubmenuitem.h               \
111         gailstatusbar.h                 \
112         gailtextcell.h                  \
113         gailtextview.h                  \
114         gailtogglebutton.h              \
115         gailtoplevel.h                  \
116         gailtreeview.h                  \
117         gailutil.h                      \
118         gailwindow.h
119
120 gail_public_h_sources = \
121         gailwidget.h
122
123 libgail_la_SOURCES =                    \
124         $(gail_c_sources)               \
125         $(gail_public_h_sources)        \
126         $(gail_private_h_sources)
127
128 libgailinclude_HEADERS =                \
129         $(gail_public_h_sources)
130
131 libgail_la_CPPFLAGS = \
132         -I$(top_srcdir)                 \
133         -I$(top_srcdir)/modules/other   \
134         -I$(top_srcdir)/gdk             \
135         -I$(top_builddir)/gdk           \
136         -I$(top_srcdir)/gtk             \
137         -I$(top_builddir)/gtk           \
138         -DGTK_VERSION=\"$(GTK_VERSION)\"\
139         -DGDK_DISABLE_DEPRECATED        \
140         -DGTK_DISABLE_DEPRECATED        \
141         $(AM_CPPFLAGS)
142
143 libgail_la_CFLAGS = \
144         $(GTK_DEP_CFLAGS)       \
145         $(GTK_DEBUG_FLAGS)      \
146         $(AM_CFLAGS)
147
148 libgail_la_LIBADD =  \
149         $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la  \
150         $(top_builddir)/gdk/$(gdktargetlib)                             \
151         $(top_builddir)/gtk/$(gtktargetlib)                             \
152         $(top_builddir)/modules/other/gail/libgail-util/libgailutil.la  \
153         $(GTK_DEP_LIBS)                                                 \
154         $(INTLLIBS)
155
156 libgail_la_LDFLAGS =    \
157         -rpath $(moduledir) -module -avoid-version \
158         $(no_undefined) \
159         $(LDFLAGS)
160
161 -include $(top_srcdir)/git.mk