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