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