]> Dogcows Code - chaz/openbox/blob - Makefile.am
add the showdesktop action
[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 $(XRENDER_CFLAGS) \
122 $(XDAMAGE_CFLAGS) \
123 $(XCOMPOSITE_CFLAGS) \
124 $(X_CFLAGS) \
125 $(XCURSOR_CFLAGS) \
126 $(SM_CFLAGS) \
127 $(PANGO_CFLAGS) \
128 $(GLIB_CFLAGS) \
129 $(LIBSN_CFLAGS) \
130 $(XML_CFLAGS) \
131 -DLOCALEDIR=\"$(localedir)\" \
132 -DDATADIR=\"$(datadir)\" \
133 -DCONFIGDIR=\"$(configdir)\" \
134 -DG_LOG_DOMAIN=\"Openbox\"
135 openbox_openbox_LDADD = \
136 $(SM_LIBS) \
137 $(XINERAMA_LIBS) \
138 $(XKB_LIBS) \
139 $(XRANDR_LIBS) \
140 $(XSHAPE_LIBS) \
141 $(XSYNC_LIBS) \
142 $(GLIB_LIBS) \
143 $(XRENDER_LIBS) \
144 $(XDAMAGE_LIBS) \
145 $(XCOMPOSITE_LIBS) \
146 $(X_LIBS) \
147 $(XCURSOR_LIBS) \
148 $(LIBSN_LIBS) \
149 $(XML_LIBS) \
150 $(EFENCE_LIBS) \
151 $(LIBINTL) \
152 render/libobrender.la \
153 parser/libobparser.la
154 openbox_openbox_LDFLAGS = -export-dynamic
155 openbox_openbox_SOURCES = \
156 gettext.h \
157 openbox/actions/all.c \
158 openbox/actions/all.h \
159 openbox/actions/debug.c \
160 openbox/actions/execute.c \
161 openbox/actions/showdesktop.c \
162 openbox/actions/showmenu.c \
163 openbox/actions.c \
164 openbox/actions.h \
165 openbox/client.c \
166 openbox/client.h \
167 openbox/client_list_menu.c \
168 openbox/client_list_menu.h \
169 openbox/client_list_combined_menu.c \
170 openbox/client_list_combined_menu.h \
171 openbox/client_menu.c \
172 openbox/client_menu.h \
173 openbox/composite.c \
174 openbox/composite.h \
175 openbox/config.c \
176 openbox/config.h \
177 openbox/debug.c \
178 openbox/debug.h \
179 openbox/dock.c \
180 openbox/dock.h \
181 openbox/event.c \
182 openbox/event.h \
183 openbox/extensions.c \
184 openbox/extensions.h \
185 openbox/focus.c \
186 openbox/focus.h \
187 openbox/focus_cycle.c \
188 openbox/focus_cycle.h \
189 openbox/focus_cycle_indicator.c \
190 openbox/focus_cycle_indicator.h \
191 openbox/focus_cycle_popup.c \
192 openbox/focus_cycle_popup.h \
193 openbox/frame.c \
194 openbox/frame.h \
195 openbox/framerender.c \
196 openbox/framerender.h \
197 openbox/geom.h \
198 openbox/grab.c \
199 openbox/grab.h \
200 openbox/group.c \
201 openbox/group.h \
202 openbox/keyboard.c \
203 openbox/keyboard.h \
204 openbox/keytree.c \
205 openbox/keytree.h \
206 openbox/mainloop.c \
207 openbox/mainloop.h \
208 openbox/menuframe.c \
209 openbox/menuframe.h \
210 openbox/menu.c \
211 openbox/menu.h \
212 openbox/misc.h \
213 openbox/modkeys.c \
214 openbox/modkeys.h \
215 openbox/mouse.c \
216 openbox/mouse.h \
217 openbox/moveresize.c \
218 openbox/moveresize.h \
219 openbox/mwm.h \
220 openbox/openbox.c \
221 openbox/openbox.h \
222 openbox/place.c \
223 openbox/place.h \
224 openbox/popup.c \
225 openbox/popup.h \
226 openbox/prop.c \
227 openbox/prop.h \
228 openbox/propwin.c \
229 openbox/propwin.h \
230 openbox/resist.c \
231 openbox/resist.h \
232 openbox/screen.c \
233 openbox/screen.h \
234 openbox/session.c \
235 openbox/session.h \
236 openbox/stacking.c \
237 openbox/stacking.h \
238 openbox/startupnotify.c \
239 openbox/startupnotify.h \
240 openbox/translate.c \
241 openbox/translate.h \
242 openbox/window.c \
243 openbox/window.h \
244 openbox/xerror.c \
245 openbox/xerror.h
246
247
248 ## gnome-panel-control ##
249
250 tools_gnome_panel_control_gnome_panel_control_CPPFLAGS = \
251 $(X_CFLAGS)
252 tools_gnome_panel_control_gnome_panel_control_LDADD = \
253 $(X_LIBS)
254 tools_gnome_panel_control_gnome_panel_control_SOURCES = \
255 tools/gnome-panel-control/gnome-panel-control.c
256
257
258 ## default button masks ##
259 dist_docxbm_DATA = \
260 data/xbm/bullet.xbm \
261 data/xbm/close.xbm \
262 data/xbm/desk_toggled.xbm \
263 data/xbm/desk.xbm \
264 data/xbm/iconify.xbm \
265 data/xbm/max_toggled.xbm \
266 data/xbm/max.xbm \
267 data/xbm/shade_toggled.xbm \
268 data/xbm/shade.xbm
269
270
271 ## themes ##
272
273 clearlooks_themedir = $(themedir)/Clearlooks/openbox-3
274 dist_clearlooks_theme_DATA= \
275 themes/Clearlooks/openbox-3/themerc
276
277 clearlooksolive_themedir = $(themedir)/Clearlooks-Olive/openbox-3
278 dist_clearlooksolive_theme_DATA= \
279 themes/Clearlooks-Olive/openbox-3/themerc
280
281 mikachu_themedir = $(themedir)/Mikachu/openbox-3
282 dist_mikachu_theme_DATA= \
283 themes/Mikachu/openbox-3/bullet.xbm \
284 themes/Mikachu/openbox-3/close.xbm \
285 themes/Mikachu/openbox-3/desk.xbm \
286 themes/Mikachu/openbox-3/iconify.xbm \
287 themes/Mikachu/openbox-3/max.xbm \
288 themes/Mikachu/openbox-3/themerc
289
290
291 natura_themedir = $(themedir)/Natura/openbox-3
292 dist_natura_theme_DATA= \
293 themes/Natura/openbox-3/close_hover.xbm \
294 themes/Natura/openbox-3/close.xbm \
295 themes/Natura/openbox-3/desk_toggled.xbm \
296 themes/Natura/openbox-3/desk_hover.xbm \
297 themes/Natura/openbox-3/desk.xbm \
298 themes/Natura/openbox-3/iconify_hover.xbm \
299 themes/Natura/openbox-3/iconify.xbm \
300 themes/Natura/openbox-3/max_hover.xbm \
301 themes/Natura/openbox-3/max_toggled.xbm \
302 themes/Natura/openbox-3/max.xbm \
303 themes/Natura/openbox-3/shade.xbm \
304 themes/Natura/openbox-3/shade_hover.xbm \
305 themes/Natura/openbox-3/themerc
306
307 artwizboxed_themedir = $(themedir)/Artwiz-boxed/openbox-3
308 dist_artwizboxed_theme_DATA= \
309 themes/Artwiz-boxed/openbox-3/themerc
310
311 bear2_themedir = $(themedir)/Bear2/openbox-3
312 dist_bear2_theme_DATA= \
313 themes/Bear2/openbox-3/close_pressed.xbm \
314 themes/Bear2/openbox-3/close.xbm \
315 themes/Bear2/openbox-3/desk_toggled.xbm \
316 themes/Bear2/openbox-3/desk.xbm \
317 themes/Bear2/openbox-3/iconify_pressed.xbm \
318 themes/Bear2/openbox-3/iconify.xbm \
319 themes/Bear2/openbox-3/max_pressed.xbm \
320 themes/Bear2/openbox-3/max_toggled.xbm \
321 themes/Bear2/openbox-3/max.xbm \
322 themes/Bear2/openbox-3/shade_pressed.xbm \
323 themes/Bear2/openbox-3/shade.xbm \
324 themes/Bear2/openbox-3/themerc
325
326 orang_themedir = $(themedir)/Orang/openbox-3
327 dist_orang_theme_DATA= \
328 themes/Orang/openbox-3/themerc
329
330 onyx_themedir = $(themedir)/Onyx/openbox-3
331 dist_onyx_theme_DATA= \
332 themes/Onyx/openbox-3/themerc
333
334 onyxcitrus_themedir = $(themedir)/Onyx-Citrus/openbox-3
335 dist_onyxcitrus_theme_DATA= \
336 themes/Onyx-Citrus/openbox-3/themerc
337
338 syscrash_themedir = $(themedir)/Syscrash/openbox-3
339 dist_syscrash_theme_DATA= \
340 themes/Syscrash/openbox-3/max_disabled.xbm \
341 themes/Syscrash/openbox-3/max_pressed.xbm \
342 themes/Syscrash/openbox-3/max_toggled.xbm \
343 themes/Syscrash/openbox-3/max.xbm \
344 themes/Syscrash/openbox-3/themerc
345
346 ## public headers ##
347
348 pubinclude_HEADERS = \
349 render/color.h \
350 render/font.h \
351 render/geom.h \
352 render/gradient.h \
353 render/image.h \
354 render/instance.h \
355 render/mask.h \
356 render/render.h \
357 render/theme.h \
358 parser/parse.h
359
360 nodist_pubinclude_HEADERS = \
361 version.h
362
363 nodist_pkgconfig_DATA = \
364 render/obrender-3.0.pc \
365 parser/obparser-3.0.pc
366
367 ## data ##
368
369 dist_pixmap_DATA = \
370 data/openbox.png
371
372 dist_rc_DATA = \
373 data/autostart.sh \
374 data/rc.xml \
375 data/menu.xml
376
377 edit = $(SED) \
378 -e 's!@version\@!$(VERSION)!' \
379 -e 's!@configdir\@!$(configdir)!' \
380 -e 's!@bindir\@!$(bindir)!'
381
382 %.desktop: %.desktop.in Makefile
383 @echo make: creating $@
384 @$(edit) $< >$@
385
386 %-session: %-session.in Makefile
387 @echo make: creating $@
388 @$(edit) $< >$@
389
390 %.1.in: %.1.sgml
391 @echo make: creating $@
392 @docbook-to-man $< >$@
393
394 %.1: %.1.in Makefile
395 @echo make: creating $@
396 @$(edit) $< >$@
397
398 dist_gnomewmfiles_DATA = \
399 data/gnome-wm-properties/openbox.desktop
400
401 nodist_xsessions_DATA = \
402 data/xsession/openbox.desktop \
403 data/xsession/openbox-gnome.desktop \
404 data/xsession/openbox-kde.desktop
405
406 dist_noinst_DATA = \
407 version.h.in \
408 data/rc.xsd \
409 data/menu.xsd \
410 data/xsession/openbox.desktop.in \
411 data/xsession/openbox-gnome.desktop.in \
412 data/xsession/openbox-kde.desktop.in \
413 data/xsession/openbox-session.in \
414 data/xsession/openbox-gnome-session.in \
415 data/xsession/openbox-kde-session.in \
416 doc/openbox.1.sgml \
417 doc/openbox.1.in \
418 doc/openbox-session.1.sgml \
419 doc/openbox-session.1.in \
420 doc/openbox-gnome-session.1.sgml \
421 doc/openbox-gnome-session.1.in \
422 doc/openbox-kde-session.1.sgml \
423 doc/openbox-kde-session.1.in \
424 render/obrender-3.0.pc.in \
425 parser/obparser-3.0.pc.in \
426 tools/themeupdate/themeupdate.py \
427 tests/hideshow.py \
428 tests/Makefile \
429 tests/aspect.c \
430 tests/fullscreen.c \
431 tests/grav.c \
432 tests/grouptran.c \
433 tests/icons.c \
434 tests/modal2.c \
435 tests/modal3.c \
436 tests/modal.c \
437 tests/noresize.c \
438 tests/override.c \
439 tests/positioned.c \
440 tests/strut.c \
441 tests/title.c \
442 tests/urgent.c
443
444 dist_doc_DATA = \
445 COMPLIANCE \
446 README \
447 AUTHORS \
448 CHANGELOG \
449 COPYING \
450 data/rc.xsd \
451 data/menu.xsd \
452 doc/rc-mouse-focus.xml
453
454 nodist_man_MANS = \
455 doc/openbox.1 \
456 doc/openbox-session.1 \
457 doc/openbox-gnome-session.1 \
458 doc/openbox-kde-session.1
459
460 EXTRA_DIST = \
461 debian/changelog.in \
462 debian/compat \
463 debian/conffiles \
464 debian/control \
465 debian/copyright \
466 debian/menu \
467 debian/postinst \
468 debian/postrm \
469 debian/rules \
470 config.rpath \
471 mkinstalldirs
472
473 # make clean doesn't delete these for some reason, even though they are
474 # built by make
475 CLEANFILES = \
476 doc/openbox.1 \
477 doc/openbox-session.1 \
478 doc/openbox-gnome-session.1 \
479 doc/openbox-kde-session.1 \
480 data/xsession/openbox-session \
481 data/xsession/openbox-gnome-session \
482 data/xsession/openbox-kde-session \
483 data/xsession/openbox.desktop \
484 data/xsession/openbox-gnome.desktop \
485 data/xsession/openbox-kde.desktop
486
487 #doc:
488 # $(MAKE) -$(MAKEFLAGS) -C doc/doxygen doc
489
490 distclean-local:
491 for d in . m4 po render; do \
492 for p in core core.* gmon.out *\~ *.orig *.rej .\#*; do \
493 rm -f "$$d/$$p"; \
494 done \
495 done
496
497 .PHONY: doc
This page took 0.058675 seconds and 5 git commands to generate.