]> Dogcows Code - chaz/openbox/blob - Makefile.am
add the new Clearlooks theme by mulberry, and rename the current one to Clearlooks-3.4
[chaz/openbox] / Makefile.am
1 SUBDIRS = m4 po
2
3 docxbmdir = $(docdir)/xbm
4 themedir = $(datadir)/themes
5 localedir = $(datadir)/locale
6 configdir = $(sysconfdir)/xdg
7 rcdir = $(configdir)/openbox
8 xsessionsdir = $(datadir)/xsessions
9 gnomewmfilesdir = $(datadir)/gnome/wm-properties
10 pkgconfigdir = $(libdir)/pkgconfig
11 pubincludedir = $(includedir)/openbox/@OB_VERSION@/openbox
12 pixmapdir = $(datadir)/pixmaps
13 xsddir = $(datadir)/openbox
14
15 theme = Clearlooks
16
17 AUTOMAKE_OPTIONS = subdir-objects foreign
18
19 ACLOCAL_AMFLAGS = -I m4
20
21 INCLUDES = -I.
22
23 check_PROGRAMS = \
24 render/rendertest
25
26 lib_LTLIBRARIES = \
27 parser/libobparser.la \
28 render/libobrender.la
29
30 bin_PROGRAMS = \
31 openbox/openbox \
32 tools/gnome-panel-control/gnome-panel-control
33
34 nodist_bin_SCRIPTS = \
35 data/xsession/openbox-session \
36 data/xsession/openbox-gnome-session \
37 data/xsession/openbox-kde-session
38
39 ## render ##
40
41 render_rendertest_CPPFLAGS = \
42 $(PANGO_CFLAGS) \
43 $(XFT_CFLAGS) \
44 $(GLIB_CFLAGS) \
45 -DG_LOG_DOMAIN=\"RenderTest\"
46 render_rendertest_LDADD = \
47 parser/libobparser.la \
48 render/libobrender.la \
49 $(GLIB_LIBS) \
50 $(PANGO_LIBS) \
51 $(XFT_LIBS) \
52 $(XML_LIBS) \
53 $(X_LIBS)
54 render_rendertest_SOURCES = render/test.c
55
56 render_libobrender_la_CPPFLAGS = \
57 $(X_CFLAGS) \
58 $(GLIB_CFLAGS) \
59 $(XML_CFLAGS) \
60 $(PANGO_CFLAGS) \
61 $(XFT_CFLAGS) \
62 -DG_LOG_DOMAIN=\"ObRender\" \
63 -DDEFAULT_THEME=\"$(theme)\"
64 render_libobrender_la_LDFLAGS = \
65 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
66 render_libobrender_la_LIBADD = \
67 parser/libobparser.la \
68 $(X_LIBS) \
69 $(PANGO_LIBS) \
70 $(XFT_LIBS) \
71 $(GLIB_LIBS) \
72 $(XML_LIBS)
73 render_libobrender_la_SOURCES = \
74 gettext.h \
75 render/color.h \
76 render/color.c \
77 render/font.h \
78 render/font.c \
79 render/geom.h \
80 render/gradient.h \
81 render/gradient.c \
82 render/icon.h \
83 render/image.h \
84 render/image.c \
85 render/instance.h \
86 render/instance.c \
87 render/mask.h \
88 render/mask.c \
89 render/render.h \
90 render/render.c \
91 render/theme.h \
92 render/theme.c
93
94 ## parser ##
95
96 parser_libobparser_la_CPPFLAGS = \
97 $(GLIB_CFLAGS) \
98 $(XML_CFLAGS) \
99 -DG_LOG_DOMAIN=\"ObParser\" \
100 -DLOCALEDIR=\"$(localedir)\" \
101 -DDATADIR=\"$(datadir)\" \
102 -DCONFIGDIR=\"$(configdir)\"
103 parser_libobparser_la_LDFLAGS = \
104 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
105 parser_libobparser_la_LIBADD = \
106 $(GLIB_LIBS) \
107 $(XML_LIBS)
108 parser_libobparser_la_SOURCES = \
109 parser/parse.h \
110 parser/parse.c
111
112 ## openbox ##
113
114 openbox_openbox_CPPFLAGS = \
115 $(SM_CFLAGS) \
116 $(XINERAMA_CFLAGS) \
117 $(XKB_CFLAGS) \
118 $(XRANDR_CFLAGS) \
119 $(XSHAPE_CFLAGS) \
120 $(XSYNC_CFLAGS) \
121 $(X_CFLAGS) \
122 $(XCURSOR_CFLAGS) \
123 $(SM_CFLAGS) \
124 $(PANGO_CFLAGS) \
125 $(GLIB_CFLAGS) \
126 $(LIBSN_CFLAGS) \
127 $(XML_CFLAGS) \
128 -DLOCALEDIR=\"$(localedir)\" \
129 -DDATADIR=\"$(datadir)\" \
130 -DCONFIGDIR=\"$(configdir)\" \
131 -DG_LOG_DOMAIN=\"Openbox\"
132 openbox_openbox_LDADD = \
133 $(SM_LIBS) \
134 $(XINERAMA_LIBS) \
135 $(XKB_LIBS) \
136 $(XRANDR_LIBS) \
137 $(XSHAPE_LIBS) \
138 $(XSYNC_LIBS) \
139 $(GLIB_LIBS) \
140 $(X_LIBS) \
141 $(XCURSOR_LIBS) \
142 $(LIBSN_LIBS) \
143 $(XML_LIBS) \
144 $(EFENCE_LIBS) \
145 $(LIBINTL) \
146 render/libobrender.la \
147 parser/libobparser.la
148 openbox_openbox_LDFLAGS = -export-dynamic
149 openbox_openbox_SOURCES = \
150 gettext.h \
151 openbox/actions/all.c \
152 openbox/actions/all.h \
153 openbox/actions/addremovedesktop.c \
154 openbox/actions/breakchroot.c \
155 openbox/actions/close.c \
156 openbox/actions/cyclewindows.c \
157 openbox/actions/debug.c \
158 openbox/actions/decorations.c \
159 openbox/actions/desktop.c \
160 openbox/actions/dockautohide.c \
161 openbox/actions/directionalwindows.c \
162 openbox/actions/execute.c \
163 openbox/actions/exit.c \
164 openbox/actions/focus.c \
165 openbox/actions/focustobottom.c \
166 openbox/actions/fullscreen.c \
167 openbox/actions/growtoedge.c \
168 openbox/actions/iconify.c \
169 openbox/actions/if.c \
170 openbox/actions/kill.c \
171 openbox/actions/layer.c \
172 openbox/actions/lower.c \
173 openbox/actions/maximize.c \
174 openbox/actions/move.c \
175 openbox/actions/moverelative.c \
176 openbox/actions/moveresizeto.c \
177 openbox/actions/movetoedge.c \
178 openbox/actions/omnipresent.c \
179 openbox/actions/raise.c \
180 openbox/actions/raiselower.c \
181 openbox/actions/reconfigure.c \
182 openbox/actions/resize.c \
183 openbox/actions/resizerelative.c \
184 openbox/actions/restart.c \
185 openbox/actions/shade.c \
186 openbox/actions/showdesktop.c \
187 openbox/actions/showmenu.c \
188 openbox/actions/unfocus.c \
189 openbox/actions.c \
190 openbox/actions.h \
191 openbox/client.c \
192 openbox/client.h \
193 openbox/client_list_menu.c \
194 openbox/client_list_menu.h \
195 openbox/client_list_combined_menu.c \
196 openbox/client_list_combined_menu.h \
197 openbox/client_menu.c \
198 openbox/client_menu.h \
199 openbox/config.c \
200 openbox/config.h \
201 openbox/debug.c \
202 openbox/debug.h \
203 openbox/dock.c \
204 openbox/dock.h \
205 openbox/event.c \
206 openbox/event.h \
207 openbox/extensions.c \
208 openbox/extensions.h \
209 openbox/focus.c \
210 openbox/focus.h \
211 openbox/focus_cycle.c \
212 openbox/focus_cycle.h \
213 openbox/focus_cycle_indicator.c \
214 openbox/focus_cycle_indicator.h \
215 openbox/focus_cycle_popup.c \
216 openbox/focus_cycle_popup.h \
217 openbox/frame.c \
218 openbox/frame.h \
219 openbox/framerender.c \
220 openbox/framerender.h \
221 openbox/geom.h \
222 openbox/grab.c \
223 openbox/grab.h \
224 openbox/group.c \
225 openbox/group.h \
226 openbox/keyboard.c \
227 openbox/keyboard.h \
228 openbox/keytree.c \
229 openbox/keytree.h \
230 openbox/mainloop.c \
231 openbox/mainloop.h \
232 openbox/menuframe.c \
233 openbox/menuframe.h \
234 openbox/menu.c \
235 openbox/menu.h \
236 openbox/misc.h \
237 openbox/modkeys.c \
238 openbox/modkeys.h \
239 openbox/mouse.c \
240 openbox/mouse.h \
241 openbox/moveresize.c \
242 openbox/moveresize.h \
243 openbox/mwm.h \
244 openbox/openbox.c \
245 openbox/openbox.h \
246 openbox/ping.c \
247 openbox/ping.h \
248 openbox/place.c \
249 openbox/place.h \
250 openbox/popup.c \
251 openbox/popup.h \
252 openbox/prop.c \
253 openbox/prop.h \
254 openbox/resist.c \
255 openbox/resist.h \
256 openbox/screen.c \
257 openbox/screen.h \
258 openbox/session.c \
259 openbox/session.h \
260 openbox/stacking.c \
261 openbox/stacking.h \
262 openbox/startupnotify.c \
263 openbox/startupnotify.h \
264 openbox/translate.c \
265 openbox/translate.h \
266 openbox/window.c \
267 openbox/window.h \
268 openbox/xerror.c \
269 openbox/xerror.h
270
271
272 ## gnome-panel-control ##
273
274 tools_gnome_panel_control_gnome_panel_control_CPPFLAGS = \
275 $(X_CFLAGS)
276 tools_gnome_panel_control_gnome_panel_control_LDADD = \
277 $(X_LIBS)
278 tools_gnome_panel_control_gnome_panel_control_SOURCES = \
279 tools/gnome-panel-control/gnome-panel-control.c
280
281
282 ## default button masks ##
283 dist_docxbm_DATA = \
284 data/xbm/bullet.xbm \
285 data/xbm/close.xbm \
286 data/xbm/desk_toggled.xbm \
287 data/xbm/desk.xbm \
288 data/xbm/iconify.xbm \
289 data/xbm/max_toggled.xbm \
290 data/xbm/max.xbm \
291 data/xbm/shade_toggled.xbm \
292 data/xbm/shade.xbm
293
294
295 ## themes ##
296
297 clearlooks_themedir = $(themedir)/Clearlooks/openbox-3
298 dist_clearlooks_theme_DATA= \
299 themes/Clearlooks/openbox-3/themerc
300
301 clearlooks34_themedir = $(themedir)/Clearlooks/openbox-3
302 dist_clearlooks34_theme_DATA= \
303 themes/Clearlooks-3.4/openbox-3/themerc
304
305 clearlooksolive_themedir = $(themedir)/Clearlooks-Olive/openbox-3
306 dist_clearlooksolive_theme_DATA= \
307 themes/Clearlooks-Olive/openbox-3/themerc
308
309 mikachu_themedir = $(themedir)/Mikachu/openbox-3
310 dist_mikachu_theme_DATA= \
311 themes/Mikachu/openbox-3/bullet.xbm \
312 themes/Mikachu/openbox-3/close.xbm \
313 themes/Mikachu/openbox-3/desk.xbm \
314 themes/Mikachu/openbox-3/iconify.xbm \
315 themes/Mikachu/openbox-3/max.xbm \
316 themes/Mikachu/openbox-3/themerc
317
318
319 natura_themedir = $(themedir)/Natura/openbox-3
320 dist_natura_theme_DATA= \
321 themes/Natura/openbox-3/close_hover.xbm \
322 themes/Natura/openbox-3/close.xbm \
323 themes/Natura/openbox-3/desk_toggled.xbm \
324 themes/Natura/openbox-3/desk_hover.xbm \
325 themes/Natura/openbox-3/desk.xbm \
326 themes/Natura/openbox-3/iconify_hover.xbm \
327 themes/Natura/openbox-3/iconify.xbm \
328 themes/Natura/openbox-3/max_hover.xbm \
329 themes/Natura/openbox-3/max_toggled.xbm \
330 themes/Natura/openbox-3/max.xbm \
331 themes/Natura/openbox-3/shade.xbm \
332 themes/Natura/openbox-3/shade_hover.xbm \
333 themes/Natura/openbox-3/themerc
334
335 artwizboxed_themedir = $(themedir)/Artwiz-boxed/openbox-3
336 dist_artwizboxed_theme_DATA= \
337 themes/Artwiz-boxed/openbox-3/themerc
338
339 bear2_themedir = $(themedir)/Bear2/openbox-3
340 dist_bear2_theme_DATA= \
341 themes/Bear2/openbox-3/close_pressed.xbm \
342 themes/Bear2/openbox-3/close.xbm \
343 themes/Bear2/openbox-3/desk_toggled.xbm \
344 themes/Bear2/openbox-3/desk.xbm \
345 themes/Bear2/openbox-3/iconify_pressed.xbm \
346 themes/Bear2/openbox-3/iconify.xbm \
347 themes/Bear2/openbox-3/max_pressed.xbm \
348 themes/Bear2/openbox-3/max_toggled.xbm \
349 themes/Bear2/openbox-3/max.xbm \
350 themes/Bear2/openbox-3/shade_pressed.xbm \
351 themes/Bear2/openbox-3/shade.xbm \
352 themes/Bear2/openbox-3/themerc
353
354 orang_themedir = $(themedir)/Orang/openbox-3
355 dist_orang_theme_DATA= \
356 themes/Orang/openbox-3/themerc
357
358 onyx_themedir = $(themedir)/Onyx/openbox-3
359 dist_onyx_theme_DATA= \
360 themes/Onyx/openbox-3/themerc
361
362 onyxcitrus_themedir = $(themedir)/Onyx-Citrus/openbox-3
363 dist_onyxcitrus_theme_DATA= \
364 themes/Onyx-Citrus/openbox-3/themerc
365
366 syscrash_themedir = $(themedir)/Syscrash/openbox-3
367 dist_syscrash_theme_DATA= \
368 themes/Syscrash/openbox-3/max_disabled.xbm \
369 themes/Syscrash/openbox-3/max_pressed.xbm \
370 themes/Syscrash/openbox-3/max_toggled.xbm \
371 themes/Syscrash/openbox-3/max.xbm \
372 themes/Syscrash/openbox-3/themerc
373
374 ## public headers ##
375
376 pubinclude_HEADERS = \
377 render/color.h \
378 render/font.h \
379 render/geom.h \
380 render/gradient.h \
381 render/image.h \
382 render/instance.h \
383 render/mask.h \
384 render/render.h \
385 render/theme.h \
386 parser/parse.h
387
388 nodist_pubinclude_HEADERS = \
389 version.h
390
391 nodist_pkgconfig_DATA = \
392 render/obrender-3.0.pc \
393 parser/obparser-3.0.pc
394
395 ## data ##
396
397 dist_pixmap_DATA = \
398 data/openbox.png
399
400 dist_rc_DATA = \
401 data/autostart.sh \
402 data/rc.xml \
403 data/menu.xml
404
405 edit = $(SED) \
406 -e 's!@version\@!$(VERSION)!' \
407 -e 's!@configdir\@!$(configdir)!' \
408 -e 's!@bindir\@!$(bindir)!'
409
410 %.desktop: %.desktop.in Makefile
411 @echo make: creating $@
412 @$(edit) $< >$@
413
414 %-session: %-session.in Makefile
415 @echo make: creating $@
416 @$(edit) $< >$@
417
418 %.1.in: %.1.sgml
419 @echo make: creating $@
420 @docbook-to-man $< >$@
421
422 %.1: %.1.in Makefile
423 @echo make: creating $@
424 @$(edit) $< >$@
425
426 dist_gnomewmfiles_DATA = \
427 data/gnome-wm-properties/openbox.desktop
428
429 nodist_xsessions_DATA = \
430 data/xsession/openbox.desktop \
431 data/xsession/openbox-gnome.desktop \
432 data/xsession/openbox-kde.desktop
433
434 dist_noinst_DATA = \
435 version.h.in \
436 data/rc.xsd \
437 data/menu.xsd \
438 data/xsession/openbox.desktop.in \
439 data/xsession/openbox-gnome.desktop.in \
440 data/xsession/openbox-kde.desktop.in \
441 data/xsession/openbox-session.in \
442 data/xsession/openbox-gnome-session.in \
443 data/xsession/openbox-kde-session.in \
444 doc/openbox.1.sgml \
445 doc/openbox.1.in \
446 doc/openbox-session.1.sgml \
447 doc/openbox-session.1.in \
448 doc/openbox-gnome-session.1.sgml \
449 doc/openbox-gnome-session.1.in \
450 doc/openbox-kde-session.1.sgml \
451 doc/openbox-kde-session.1.in \
452 render/obrender-3.0.pc.in \
453 parser/obparser-3.0.pc.in \
454 tools/themeupdate/themeupdate.py \
455 tests/hideshow.py \
456 tests/Makefile \
457 tests/aspect.c \
458 tests/fullscreen.c \
459 tests/grav.c \
460 tests/grouptran.c \
461 tests/icons.c \
462 tests/modal2.c \
463 tests/modal3.c \
464 tests/modal.c \
465 tests/noresize.c \
466 tests/override.c \
467 tests/positioned.c \
468 tests/strut.c \
469 tests/title.c \
470 tests/urgent.c
471
472 dist_doc_DATA = \
473 COMPLIANCE \
474 README \
475 AUTHORS \
476 CHANGELOG \
477 COPYING \
478 data/rc.xsd \
479 data/menu.xsd \
480 doc/rc-mouse-focus.xml
481
482 nodist_man_MANS = \
483 doc/openbox.1 \
484 doc/openbox-session.1 \
485 doc/openbox-gnome-session.1 \
486 doc/openbox-kde-session.1
487
488 EXTRA_DIST = \
489 config.rpath
490
491 # make clean doesn't delete these for some reason, even though they are
492 # built by make
493 CLEANFILES = \
494 doc/openbox.1 \
495 doc/openbox-session.1 \
496 doc/openbox-gnome-session.1 \
497 doc/openbox-kde-session.1 \
498 data/xsession/openbox-session \
499 data/xsession/openbox-gnome-session \
500 data/xsession/openbox-kde-session \
501 data/xsession/openbox.desktop \
502 data/xsession/openbox-gnome.desktop \
503 data/xsession/openbox-kde.desktop
504
505 #doc:
506 # $(MAKE) -$(MAKEFLAGS) -C doc/doxygen doc
507
508 distclean-local:
509 for d in . m4 po render; do \
510 for p in core core.* gmon.out *\~ *.orig *.rej .\#*; do \
511 rm -f "$$d/$$p"; \
512 done \
513 done
514
515 .PHONY: doc
This page took 0.058009 seconds and 4 git commands to generate.