]> Dogcows Code - chaz/openbox/blob - Makefile.am
changes to the client menu, which entries are there, and reorganizing, and renaming.
[chaz/openbox] / Makefile.am
1 SUBDIRS = m4 po
2
3 themedir = $(datadir)/themes
4 localedir = $(datadir)/locale
5 configdir = $(sysconfdir)/xdg
6 rcdir = $(configdir)/openbox
7 desktopfilesdir = $(datadir)/gnome/wm-properties
8 pkgconfigdir = $(libdir)/pkgconfig
9 pubincludedir = $(includedir)/openbox/@OB_VERSION@/openbox
10 pixmapdir = $(datadir)/pixmaps
11 xsddir = $(datadir)/openbox
12
13 theme = Clearlooks
14
15 AUTOMAKE_OPTIONS = subdir-objects foreign
16
17 ACLOCAL_AMFLAGS = -I m4
18
19 INCLUDES = -I.
20
21 check_PROGRAMS = \
22 render/rendertest
23
24 lib_LTLIBRARIES = \
25 parser/libobparser.la \
26 render/libobrender.la
27
28 bin_PROGRAMS = \
29 openbox/openbox \
30 tools/gnome-panel-control/gnome-panel-control
31
32 noinst_PROGRAMS = \
33 tools/themetoxml/themetoxml
34
35 ## render ##
36
37 render_rendertest_CPPFLAGS = \
38 $(PANGO_CFLAGS) \
39 $(GLIB_CFLAGS) \
40 -DG_LOG_DOMAIN=\"RenderTest\"
41 render_rendertest_LDADD = \
42 parser/libobparser.la \
43 render/libobrender.la \
44 $(GLIB_LIBS) \
45 $(PANGO_LIBS) \
46 $(XML_LIBS) \
47 $(X_LIBS)
48 render_rendertest_SOURCES = render/test.c
49
50 render_libobrender_la_CPPFLAGS = \
51 $(X_CFLAGS) \
52 $(GLIB_CFLAGS) \
53 $(XML_CFLAGS) \
54 $(PANGO_CFLAGS) \
55 -DG_LOG_DOMAIN=\"ObRender\" \
56 -DDEFAULT_THEME=\"$(theme)\"
57 render_libobrender_la_LDFLAGS = \
58 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
59 render_libobrender_la_LIBADD = \
60 parser/libobparser.la \
61 $(X_LIBS) \
62 $(PANGO_LIBS) \
63 $(GLIB_LIBS) \
64 $(XML_LIBS)
65 render_libobrender_la_SOURCES = \
66 gettext.h \
67 render/color.h \
68 render/color.c \
69 render/font.h \
70 render/font.c \
71 render/geom.h \
72 render/gradient.h \
73 render/gradient.c \
74 render/icon.h \
75 render/image.h \
76 render/image.c \
77 render/instance.h \
78 render/instance.c \
79 render/mask.h \
80 render/mask.c \
81 render/render.h \
82 render/render.c \
83 render/theme.h \
84 render/theme.c
85
86 ## parser ##
87
88 parser_libobparser_la_CPPFLAGS = \
89 $(GLIB_CFLAGS) \
90 $(XML_CFLAGS) \
91 -DG_LOG_DOMAIN=\"ObParser\" \
92 -DLOCALEDIR=\"$(localedir)\" \
93 -DDATADIR=\"$(datadir)\" \
94 -DCONFIGDIR=\"$(configdir)\"
95 parser_libobparser_la_LDFLAGS = \
96 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
97 parser_libobparser_la_LIBADD = \
98 $(GLIB_LIBS) \
99 $(XML_LIBS)
100 parser_libobparser_la_SOURCES = \
101 parser/parse.h \
102 parser/parse.c
103
104 ## openbox ##
105
106 openbox_openbox_CPPFLAGS = \
107 $(SM_CFLAGS) \
108 $(XINERAMA_CFLAGS) \
109 $(XKB_CFLAGS) \
110 $(XRANDR_CFLAGS) \
111 $(XSHAPE_CFLAGS) \
112 $(XSYNC_CFLAGS) \
113 $(X_CFLAGS) \
114 $(XCURSOR_CFLAGS) \
115 $(SM_CFLAGS) \
116 $(PANGO_CFLAGS) \
117 $(GLIB_CFLAGS) \
118 $(LIBSN_CFLAGS) \
119 $(XML_CFLAGS) \
120 -DLOCALEDIR=\"$(localedir)\" \
121 -DDATADIR=\"$(datadir)\" \
122 -DCONFIGDIR=\"$(configdir)\" \
123 -DG_LOG_DOMAIN=\"Openbox\"
124 openbox_openbox_LDADD = \
125 $(SM_LIBS) \
126 $(XINERAMA_LIBS) \
127 $(XKB_LIBS) \
128 $(XRANDR_LIBS) \
129 $(XSHAPE_LIBS) \
130 $(XSYNC_LIBS) \
131 $(GLIB_LIBS) \
132 $(X_LIBS) \
133 $(XCURSOR_LIBS) \
134 $(LIBSN_LIBS) \
135 $(XML_LIBS) \
136 $(EFENCE_LIBS) \
137 $(LIBINTL) \
138 render/libobrender.la \
139 parser/libobparser.la
140 openbox_openbox_LDFLAGS = -export-dynamic
141 openbox_openbox_SOURCES = \
142 gettext.h \
143 openbox/action.c \
144 openbox/action.h \
145 openbox/client.c \
146 openbox/client.h \
147 openbox/client_list_menu.c \
148 openbox/client_list_menu.h \
149 openbox/client_list_combined_menu.c \
150 openbox/client_list_combined_menu.h \
151 openbox/client_menu.c \
152 openbox/client_menu.h \
153 openbox/config.c \
154 openbox/config.h \
155 openbox/debug.c \
156 openbox/debug.h \
157 openbox/dock.c \
158 openbox/dock.h \
159 openbox/event.c \
160 openbox/event.h \
161 openbox/extensions.c \
162 openbox/extensions.h \
163 openbox/focus.c \
164 openbox/focus.h \
165 openbox/frame.c \
166 openbox/frame.h \
167 openbox/framerender.c \
168 openbox/framerender.h \
169 openbox/geom.h \
170 openbox/grab.c \
171 openbox/grab.h \
172 openbox/group.c \
173 openbox/group.h \
174 openbox/keyboard.c \
175 openbox/keyboard.h \
176 openbox/keytree.c \
177 openbox/keytree.h \
178 openbox/mainloop.c \
179 openbox/mainloop.h \
180 openbox/menuframe.c \
181 openbox/menuframe.h \
182 openbox/menu.c \
183 openbox/menu.h \
184 openbox/misc.h \
185 openbox/modkeys.c \
186 openbox/modkeys.h \
187 openbox/mouse.c \
188 openbox/mouse.h \
189 openbox/moveresize.c \
190 openbox/moveresize.h \
191 openbox/mwm.h \
192 openbox/openbox.c \
193 openbox/openbox.h \
194 openbox/place.c \
195 openbox/place.h \
196 openbox/popup.c \
197 openbox/popup.h \
198 openbox/prop.c \
199 openbox/prop.h \
200 openbox/resist.c \
201 openbox/resist.h \
202 openbox/screen.c \
203 openbox/screen.h \
204 openbox/session.c \
205 openbox/session.h \
206 openbox/stacking.c \
207 openbox/stacking.h \
208 openbox/startupnotify.c \
209 openbox/startupnotify.h \
210 openbox/translate.c \
211 openbox/translate.h \
212 openbox/window.c \
213 openbox/window.h \
214 openbox/xerror.c \
215 openbox/xerror.h
216
217
218 ## themetoxml ##
219
220 tools_themetoxml_themetoxml_CPPFLAGS = \
221 $(X_CFLAGS) \
222 $(GLIB_CFLAGS) \
223 $(XML_CFLAGS)
224 tools_themetoxml_themetoxml_LDADD = \
225 $(X_LIBS) \
226 $(GLIB_LIBS) \
227 $(XML_LIBS)
228 tools_themetoxml_themetoxml_SOURCES = \
229 tools/themetoxml/themetoxml.c \
230 tools/themetoxml/rgb.h
231
232
233 ## gnome-panel-control ##
234
235 tools_gnome_panel_control_gnome_panel_control_CPPFLAGS = \
236 $(X_CFLAGS)
237 tools_gnome_panel_control_gnome_panel_control_LDADD = \
238 $(X_LIBS)
239 tools_gnome_panel_control_gnome_panel_control_SOURCES = \
240 tools/gnome-panel-control/gnome-panel-control.c
241
242
243 ## themes ##
244
245 clearlooks_themedir = $(themedir)/Clearlooks/openbox-3
246 dist_clearlooks_theme_DATA= \
247 themes/Clearlooks/openbox-3/bullet.xbm \
248 themes/Clearlooks/openbox-3/close.xbm \
249 themes/Clearlooks/openbox-3/desk_toggled.xbm \
250 themes/Clearlooks/openbox-3/desk.xbm \
251 themes/Clearlooks/openbox-3/iconify.xbm \
252 themes/Clearlooks/openbox-3/max_toggled.xbm \
253 themes/Clearlooks/openbox-3/max.xbm \
254 themes/Clearlooks/openbox-3/themerc.xml
255
256 clearlooksolive_themedir = $(themedir)/Clearlooks-Olive/openbox-3
257 dist_clearlooksolive_theme_DATA= \
258 themes/Clearlooks-Olive/openbox-3/bullet.xbm \
259 themes/Clearlooks-Olive/openbox-3/close.xbm \
260 themes/Clearlooks-Olive/openbox-3/desk_toggled.xbm \
261 themes/Clearlooks-Olive/openbox-3/desk.xbm \
262 themes/Clearlooks-Olive/openbox-3/iconify.xbm \
263 themes/Clearlooks-Olive/openbox-3/max_toggled.xbm \
264 themes/Clearlooks-Olive/openbox-3/max.xbm \
265 themes/Clearlooks-Olive/openbox-3/themerc.xml
266
267 mikachu_themedir = $(themedir)/Mikachu/openbox-3
268 dist_mikachu_theme_DATA= \
269 themes/Mikachu/openbox-3/bullet.xbm \
270 themes/Mikachu/openbox-3/close.xbm \
271 themes/Mikachu/openbox-3/desk.xbm \
272 themes/Mikachu/openbox-3/iconify.xbm \
273 themes/Mikachu/openbox-3/max.xbm \
274 themes/Mikachu/openbox-3/themerc.xml
275
276
277 natura_themedir = $(themedir)/Natura/openbox-3
278 dist_natura_theme_DATA= \
279 themes/Natura/openbox-3/close_hover.xbm \
280 themes/Natura/openbox-3/close.xbm \
281 themes/Natura/openbox-3/desk_toggled.xbm \
282 themes/Natura/openbox-3/desk.xbm \
283 themes/Natura/openbox-3/iconify_disabled.xbm \
284 themes/Natura/openbox-3/iconify_hover.xbm \
285 themes/Natura/openbox-3/iconify.xbm \
286 themes/Natura/openbox-3/max_disabled.xbm \
287 themes/Natura/openbox-3/max_hover.xbm \
288 themes/Natura/openbox-3/max_toggled.xbm \
289 themes/Natura/openbox-3/max.xbm \
290 themes/Natura/openbox-3/shade.xbm \
291 themes/Natura/openbox-3/themerc.xml
292
293 artwizboxed_themedir = $(themedir)/Artwiz-boxed/openbox-3
294 dist_artwizboxed_theme_DATA= \
295 themes/Artwiz-boxed/openbox-3/close.xbm \
296 themes/Artwiz-boxed/openbox-3/desk_toggled.xbm \
297 themes/Artwiz-boxed/openbox-3/desk.xbm \
298 themes/Artwiz-boxed/openbox-3/iconify.xbm \
299 themes/Artwiz-boxed/openbox-3/max_toggled.xbm \
300 themes/Artwiz-boxed/openbox-3/max.xbm \
301 themes/Artwiz-boxed/openbox-3/themerc.xml
302
303 bear2_themedir = $(themedir)/Bear2/openbox-3
304 dist_bear2_theme_DATA= \
305 themes/Bear2/openbox-3/close_pressed.xbm \
306 themes/Bear2/openbox-3/close.xbm \
307 themes/Bear2/openbox-3/desk_toggled.xbm \
308 themes/Bear2/openbox-3/desk.xbm \
309 themes/Bear2/openbox-3/iconify_disabled.xbm \
310 themes/Bear2/openbox-3/iconify_pressed.xbm \
311 themes/Bear2/openbox-3/iconify.xbm \
312 themes/Bear2/openbox-3/max_disabled.xbm \
313 themes/Bear2/openbox-3/max_pressed.xbm \
314 themes/Bear2/openbox-3/max_toggled.xbm \
315 themes/Bear2/openbox-3/max.xbm \
316 themes/Bear2/openbox-3/shade_pressed.xbm \
317 themes/Bear2/openbox-3/shade.xbm \
318 themes/Bear2/openbox-3/themerc.xml
319
320 orang_themedir = $(themedir)/Orang/openbox-3
321 dist_orang_theme_DATA= \
322 themes/Orang/openbox-3/themerc.xml
323
324 syscrash_themedir = $(themedir)/Syscrash/openbox-3
325 dist_syscrash_theme_DATA= \
326 themes/Syscrash/openbox-3/bullet.xbm \
327 themes/Syscrash/openbox-3/close_disabled.xbm \
328 themes/Syscrash/openbox-3/close.xbm \
329 themes/Syscrash/openbox-3/desk_toggled.xbm \
330 themes/Syscrash/openbox-3/desk.xbm \
331 themes/Syscrash/openbox-3/iconify.xbm \
332 themes/Syscrash/openbox-3/max_disabled.xbm \
333 themes/Syscrash/openbox-3/max_pressed.xbm \
334 themes/Syscrash/openbox-3/max_toggled.xbm \
335 themes/Syscrash/openbox-3/max.xbm \
336 themes/Syscrash/openbox-3/shade.xbm \
337 themes/Syscrash/openbox-3/themerc.xml
338
339 ## public headers ##
340
341 pubinclude_HEADERS = \
342 render/color.h \
343 render/font.h \
344 render/geom.h \
345 render/gradient.h \
346 render/image.h \
347 render/instance.h \
348 render/mask.h \
349 render/render.h \
350 render/theme.h \
351 parser/parse.h
352
353 nodist_pubinclude_HEADERS = \
354 version.h
355
356 nodist_pkgconfig_DATA = \
357 render/obrender-3.0.pc \
358 parser/obparser-3.0.pc
359
360 ## data ##
361
362 dist_pixmap_DATA = \
363 data/openbox.png
364
365 nodist_rc_DATA = \
366 data/rc.xml \
367 data/menu.xml
368
369 dist_xsd_DATA = \
370 data/rc.xsd \
371 data/menu.xsd
372
373 edit = $(SED) \
374 -e 's!@version\@!$(VERSION)!' \
375 -e 's!@xsddir\@!$(xsddir)!'
376
377 data/rc.xml: Makefile $(srcdir)/data/rc.xml.in data
378 @echo make: creating $@
379 @rm -f $@
380 @mkdir data 2>/dev/null || true
381 @$(edit) $(srcdir)/data/rc.xml.in >$@
382
383 data/menu.xml: Makefile $(srcdir)/data/menu.xml.in data
384 @echo make: creating $@
385 @rm -f $@
386 @mkdir data 2>/dev/null || true
387 @$(edit) $(srcdir)/data/menu.xml.in >$@
388
389 dist_desktopfiles_DATA = \
390 data/openbox.desktop
391
392 dist_noinst_DATA = \
393 version.h.in \
394 data/rc.xml.in \
395 data/menu.xml.in \
396 render/obrender-3.0.pc.in \
397 parser/obparser-3.0.pc.in \
398 tools/themeupdate/themeupdate.py \
399 tests/hideshow.py \
400 tests/Makefile \
401 tests/aspect.c \
402 tests/fullscreen.c \
403 tests/grav.c \
404 tests/grouptran.c \
405 tests/icons.c \
406 tests/modal2.c \
407 tests/modal3.c \
408 tests/modal.c \
409 tests/noresize.c \
410 tests/override.c \
411 tests/positioned.c \
412 tests/strut.c \
413 tests/title.c \
414 tests/urgent.c
415
416 EXTRA_DIST = \
417 config.rpath \
418 mkinstalldirs \
419 CHANGELOG \
420 COMPLIANCE \
421 README \
422 COPYING \
423 AUTHORS
424
425 CLEANFILES = \
426 data/rc.xml \
427 data/menu.xml
428
429 #doc:
430 # $(MAKE) -$(MAKEFLAGS) -C doc/doxygen doc
431
432 distclean-local:
433 for d in . m4 po render; do \
434 for p in core core.* gmon.out *\~ *.orig *.rej .\#*; do \
435 rm -f "$$d/$$p"; \
436 done \
437 done
438
439 .PHONY: doc
This page took 0.051372 seconds and 4 git commands to generate.