]> icculus.org git repositories - mikachu/openbox.git/blob - Makefile.am
Merge branch 'mikabox/actions' into wip/mikabox
[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 gnomesessiondir = $(datadir)/gnome-session/sessions
10 gnomewmfilesdir = $(datadir)/gnome/wm-properties
11 pkgconfigdir    = $(libdir)/pkgconfig
12 obtpubincludedir= $(includedir)/openbox/@OBT_VERSION@/obt
13 rrpubincludedir = $(includedir)/openbox/@RR_VERSION@/obrender
14 pixmapdir       = $(datadir)/pixmaps
15 xsddir          = $(datadir)/openbox
16 appsdir         = $(datadir)/applications
17
18 theme = Clearlooks
19
20 AUTOMAKE_OPTIONS = subdir-objects foreign
21
22 ACLOCAL_AMFLAGS = -I m4
23
24 INCLUDES = -I.
25
26 check_PROGRAMS = \
27         obrender/rendertest
28
29 lib_LTLIBRARIES = \
30         obt/libobt.la \
31         obrender/libobrender.la
32
33 bin_PROGRAMS = \
34         openbox/openbox \
35         tools/gdm-control/gdm-control \
36         tools/gnome-panel-control/gnome-panel-control \
37         tools/obxprop/obxprop
38
39 nodist_bin_SCRIPTS = \
40         data/xsession/openbox-session \
41         data/xsession/openbox-gnome-session \
42         data/xsession/openbox-kde-session
43
44 dist_rc_SCRIPTS = \
45         data/environment
46
47 nodist_rc_SCRIPTS = \
48         data/autostart/autostart
49
50 dist_libexec_SCRIPTS = \
51         data/autostart/openbox-xdg-autostart
52
53 nodist_libexec_SCRIPTS = \
54         data/autostart/openbox-autostart
55
56
57 ## obrender ##
58
59 obrender_rendertest_CPPFLAGS = \
60         $(PANGO_CFLAGS) \
61         $(GLIB_CFLAGS) \
62         -DG_LOG_DOMAIN=\"RenderTest\"
63 obrender_rendertest_LDADD = \
64         obt/libobt.la \
65         obrender/libobrender.la \
66         $(GLIB_LIBS) \
67         $(PANGO_LIBS) \
68         $(XML_LIBS) \
69         $(X_LIBS)
70 obrender_rendertest_SOURCES = obrender/test.c
71
72 obrender_libobrender_la_CPPFLAGS = \
73         $(X_CFLAGS) \
74         $(GLIB_CFLAGS) \
75         $(XML_CFLAGS) \
76         $(PANGO_CFLAGS) \
77         $(IMLIB2_CFLAGS) \
78         -DG_LOG_DOMAIN=\"ObRender\" \
79         -DDEFAULT_THEME=\"$(theme)\"
80 obrender_libobrender_la_LDFLAGS = \
81         -version-info $(RR_CURRENT):$(RR_REVISION):$(RR_AGE)
82 obrender_libobrender_la_LIBADD = \
83         obt/libobt.la \
84         $(X_LIBS) \
85         $(PANGO_LIBS) \
86         $(GLIB_LIBS) \
87         $(IMLIB2_LIBS) \
88         $(XML_LIBS)
89 obrender_libobrender_la_SOURCES = \
90         gettext.h \
91         obrender/button.h \
92         obrender/button.c \
93         obrender/color.h \
94         obrender/color.c \
95         obrender/font.h \
96         obrender/font.c \
97         obrender/geom.h \
98         obrender/gradient.h \
99         obrender/gradient.c \
100         obrender/icon.h \
101         obrender/image.h \
102         obrender/image.c \
103         obrender/imagecache.h \
104         obrender/imagecache.c \
105         obrender/instance.h \
106         obrender/instance.c \
107         obrender/mask.h \
108         obrender/mask.c \
109         obrender/render.h \
110         obrender/render.c \
111         obrender/theme.h \
112         obrender/theme.c
113
114 ## obt ##
115
116 obt_libobt_la_CPPFLAGS = \
117         $(X_CFLAGS) \
118         $(XINERAMA_CFLAGS) \
119         $(XKB_CFLAGS) \
120         $(XRANDR_CFLAGS) \
121         $(XSHAPE_CFLAGS) \
122         $(XSYNC_CFLAGS) \
123         $(GLIB_CFLAGS) \
124         $(XML_CFLAGS) \
125         -DG_LOG_DOMAIN=\"Obt\" \
126         -DLOCALEDIR=\"$(localedir)\" \
127         -DDATADIR=\"$(datadir)\" \
128         -DCONFIGDIR=\"$(configdir)\"
129 obt_libobt_la_LDFLAGS = \
130         -version-info $(OBT_CURRENT):$(OBT_REVISION):$(OBT_AGE)
131 obt_libobt_la_LIBADD = \
132         $(X_LIBS) \
133         $(XINERAMA_LIBS) \
134         $(XKB_LIBS) \
135         $(XRANDR_LIBS) \
136         $(XSHAPE_LIBS) \
137         $(XSYNC_LIBS) \
138         $(GLIB_LIBS) \
139         $(XML_LIBS)
140 obt_libobt_la_SOURCES = \
141         obt/bsearch.h \
142         obt/display.h \
143         obt/display.c \
144         obt/internal.h \
145         obt/keyboard.h \
146         obt/keyboard.c \
147         obt/xml.h \
148         obt/xml.c \
149         obt/ddparse.h \
150         obt/ddparse.c \
151         obt/link.h \
152         obt/link.c \
153         obt/paths.h \
154         obt/paths.c \
155         obt/prop.h \
156         obt/prop.c \
157         obt/signal.h \
158         obt/signal.c \
159         obt/util.h \
160         obt/xqueue.h \
161         obt/xqueue.c
162
163 ## openbox ##
164
165 openbox_openbox_CPPFLAGS = \
166         $(SM_CFLAGS) \
167         $(X_CFLAGS) \
168         $(XCURSOR_CFLAGS) \
169         $(SM_CFLAGS) \
170         $(PANGO_CFLAGS) \
171         $(GLIB_CFLAGS) \
172         $(LIBSN_CFLAGS) \
173         $(XML_CFLAGS) \
174         -DLOCALEDIR=\"$(localedir)\" \
175         -DDATADIR=\"$(datadir)\" \
176         -DCONFIGDIR=\"$(configdir)\" \
177         -DG_LOG_DOMAIN=\"Openbox\"
178 openbox_openbox_LDADD = \
179         $(XINERAMA_LIBS) \
180         $(XRANDR_LIBS) \
181         $(SM_LIBS) \
182         $(GLIB_LIBS) \
183         $(X_LIBS) \
184         $(XCURSOR_LIBS) \
185         $(LIBSN_LIBS) \
186         $(XML_LIBS) \
187         $(EFENCE_LIBS) \
188         $(LIBINTL) \
189         obrender/libobrender.la \
190         obt/libobt.la
191 openbox_openbox_LDFLAGS = -export-dynamic
192 openbox_openbox_SOURCES = \
193         gettext.h \
194         openbox/actions/all.c \
195         openbox/actions/all.h \
196         openbox/actions/addremovedesktop.c \
197         openbox/actions/breakchroot.c \
198         openbox/actions/close.c \
199         openbox/actions/cyclewindows.c \
200         openbox/actions/debug.c \
201         openbox/actions/decorations.c \
202         openbox/actions/desktop.c \
203         openbox/actions/dock.c \
204         openbox/actions/dockautohide.c \
205         openbox/actions/directionalwindows.c \
206         openbox/actions/execute.c \
207         openbox/actions/exit.c \
208         openbox/actions/focus.c \
209         openbox/actions/focusfallback.c \
210         openbox/actions/focustobottom.c \
211         openbox/actions/fullscreen.c \
212         openbox/actions/growtoedge.c \
213         openbox/actions/iconify.c \
214         openbox/actions/if.c \
215         openbox/actions/kill.c \
216         openbox/actions/layer.c \
217         openbox/actions/lower.c \
218         openbox/actions/maximize.c \
219         openbox/actions/move.c \
220         openbox/actions/moverelative.c \
221         openbox/actions/moveresizeto.c \
222         openbox/actions/movetoedge.c \
223         openbox/actions/omnipresent.c \
224         openbox/actions/raise.c \
225         openbox/actions/raiselower.c \
226         openbox/actions/raisetemp.c \
227         openbox/actions/reconfigure.c \
228         openbox/actions/resize.c \
229         openbox/actions/resizerelative.c \
230         openbox/actions/restart.c \
231         openbox/actions/sendkeyevent.c \
232         openbox/actions/shade.c \
233         openbox/actions/shadelowerraise.c \
234         openbox/actions/showdesktop.c \
235         openbox/actions/showmenu.c \
236         openbox/actions/unfocus.c \
237         openbox/actions.c \
238         openbox/actions.h \
239         openbox/client.c \
240         openbox/client.h \
241         openbox/client_list_menu.c \
242         openbox/client_list_menu.h \
243         openbox/client_list_combined_menu.c \
244         openbox/client_list_combined_menu.h \
245         openbox/client_menu.c \
246         openbox/client_menu.h \
247         openbox/config.c \
248         openbox/config.h \
249         openbox/debug.c \
250         openbox/debug.h \
251         openbox/dock.c \
252         openbox/dock.h \
253         openbox/event.c \
254         openbox/event.h \
255         openbox/focus.c \
256         openbox/focus.h \
257         openbox/focus_cycle.c \
258         openbox/focus_cycle.h \
259         openbox/focus_cycle_indicator.c \
260         openbox/focus_cycle_indicator.h \
261         openbox/focus_cycle_popup.c \
262         openbox/focus_cycle_popup.h \
263         openbox/frame.c \
264         openbox/frame.h \
265         openbox/framerender.c \
266         openbox/framerender.h \
267         openbox/geom.h \
268         openbox/grab.c \
269         openbox/grab.h \
270         openbox/group.c \
271         openbox/group.h \
272         openbox/keyboard.c \
273         openbox/keyboard.h \
274         openbox/keytree.c \
275         openbox/keytree.h \
276         openbox/menuframe.c \
277         openbox/menuframe.h \
278         openbox/menu.c \
279         openbox/menu.h \
280         openbox/misc.h \
281         openbox/mouse.c \
282         openbox/mouse.h \
283         openbox/moveresize.c \
284         openbox/moveresize.h \
285         openbox/mwm.h \
286         openbox/openbox.c \
287         openbox/openbox.h \
288         openbox/ping.c \
289         openbox/ping.h \
290         openbox/place.c \
291         openbox/place.h \
292         openbox/place_overlap.c \
293         openbox/place_overlap.h \
294         openbox/prompt.c \
295         openbox/prompt.h \
296         openbox/popup.c \
297         openbox/popup.h \
298         openbox/resist.c \
299         openbox/resist.h \
300         openbox/screen.c \
301         openbox/screen.h \
302         openbox/session.c \
303         openbox/session.h \
304         openbox/stacking.c \
305         openbox/stacking.h \
306         openbox/startupnotify.c \
307         openbox/startupnotify.h \
308         openbox/translate.c \
309         openbox/translate.h \
310         openbox/window.c \
311         openbox/window.h
312
313
314 ## gnome-panel-control ##
315
316 tools_gnome_panel_control_gnome_panel_control_CPPFLAGS = \
317         $(X_CFLAGS)
318 tools_gnome_panel_control_gnome_panel_control_LDADD = \
319         $(X_LIBS)
320 tools_gnome_panel_control_gnome_panel_control_SOURCES = \
321         tools/gnome-panel-control/gnome-panel-control.c
322
323 ## obxprop ##
324
325 tools_obxprop_obxprop_CPPFLAGS = \
326         $(GLIB_CFLAGS) \
327         $(X_CFLAGS)
328 tools_obxprop_obxprop_LDADD = \
329         $(GLIB_LIBS) \
330         $(X_LIBS)
331 tools_obxprop_obxprop_SOURCES = \
332         tools/obxprop/obxprop.c
333
334 ## gdm-control ##
335
336 tools_gdm_control_gdm_control_CPPFLAGS = \
337         $(XAUTH_CFLAGS) \
338         $(X_CFLAGS) \
339         $(GLIB_CFLAGS)
340 tools_gdm_control_gdm_control_LDADD = \
341         $(XAUTH_LIBS) \
342         $(X_LIBS) \
343         $(GLIB_LIBS)
344 tools_gdm_control_gdm_control_SOURCES = \
345         tools/gdm-control/gdm-control.c
346
347
348 ## default button masks ##
349 dist_docxbm_DATA = \
350         data/xbm/bullet.xbm \
351         data/xbm/close.xbm \
352         data/xbm/desk_toggled.xbm \
353         data/xbm/desk.xbm \
354         data/xbm/iconify.xbm \
355         data/xbm/max_toggled.xbm \
356         data/xbm/max.xbm \
357         data/xbm/shade_toggled.xbm \
358         data/xbm/shade.xbm
359
360
361 ## themes ##
362
363 clearlooks_themedir = $(themedir)/Clearlooks/openbox-3
364 dist_clearlooks_theme_DATA= \
365         themes/Clearlooks/openbox-3/themerc
366
367 clearlooks34_themedir = $(themedir)/Clearlooks-3.4/openbox-3
368 dist_clearlooks34_theme_DATA= \
369         themes/Clearlooks-3.4/openbox-3/themerc
370
371 clearlooksolive_themedir = $(themedir)/Clearlooks-Olive/openbox-3
372 dist_clearlooksolive_theme_DATA= \
373         themes/Clearlooks-Olive/openbox-3/themerc
374
375 mikachu_themedir = $(themedir)/Mikachu/openbox-3
376 dist_mikachu_theme_DATA= \
377         themes/Mikachu/openbox-3/bullet.xbm \
378         themes/Mikachu/openbox-3/close.xbm \
379         themes/Mikachu/openbox-3/desk.xbm \
380         themes/Mikachu/openbox-3/iconify.xbm \
381         themes/Mikachu/openbox-3/max.xbm \
382         themes/Mikachu/openbox-3/themerc
383
384
385 natura_themedir = $(themedir)/Natura/openbox-3
386 dist_natura_theme_DATA= \
387         themes/Natura/openbox-3/close_hover.xbm \
388         themes/Natura/openbox-3/close.xbm \
389         themes/Natura/openbox-3/desk_toggled.xbm \
390         themes/Natura/openbox-3/desk_hover.xbm \
391         themes/Natura/openbox-3/desk.xbm \
392         themes/Natura/openbox-3/iconify_hover.xbm \
393         themes/Natura/openbox-3/iconify.xbm \
394         themes/Natura/openbox-3/max_hover.xbm \
395         themes/Natura/openbox-3/max_toggled.xbm \
396         themes/Natura/openbox-3/max.xbm \
397         themes/Natura/openbox-3/shade.xbm \
398         themes/Natura/openbox-3/shade_hover.xbm \
399         themes/Natura/openbox-3/themerc
400
401 artwizboxed_themedir = $(themedir)/Artwiz-boxed/openbox-3
402 dist_artwizboxed_theme_DATA= \
403         themes/Artwiz-boxed/openbox-3/themerc
404
405 bear2_themedir = $(themedir)/Bear2/openbox-3
406 dist_bear2_theme_DATA= \
407         themes/Bear2/openbox-3/close_pressed.xbm \
408         themes/Bear2/openbox-3/close.xbm \
409         themes/Bear2/openbox-3/desk_toggled.xbm \
410         themes/Bear2/openbox-3/desk.xbm \
411         themes/Bear2/openbox-3/iconify_pressed.xbm \
412         themes/Bear2/openbox-3/iconify.xbm \
413         themes/Bear2/openbox-3/max_pressed.xbm \
414         themes/Bear2/openbox-3/max_toggled.xbm \
415         themes/Bear2/openbox-3/max.xbm \
416         themes/Bear2/openbox-3/shade_pressed.xbm \
417         themes/Bear2/openbox-3/shade.xbm \
418         themes/Bear2/openbox-3/themerc
419
420 orang_themedir = $(themedir)/Orang/openbox-3
421 dist_orang_theme_DATA= \
422         themes/Orang/openbox-3/themerc
423
424 onyx_themedir = $(themedir)/Onyx/openbox-3
425 dist_onyx_theme_DATA= \
426         themes/Onyx/openbox-3/themerc
427
428 onyxcitrus_themedir = $(themedir)/Onyx-Citrus/openbox-3
429 dist_onyxcitrus_theme_DATA= \
430         themes/Onyx-Citrus/openbox-3/themerc
431
432 syscrash_themedir = $(themedir)/Syscrash/openbox-3
433 dist_syscrash_theme_DATA= \
434         themes/Syscrash/openbox-3/max_disabled.xbm \
435         themes/Syscrash/openbox-3/max_pressed.xbm \
436         themes/Syscrash/openbox-3/max_toggled.xbm \
437         themes/Syscrash/openbox-3/max.xbm \
438         themes/Syscrash/openbox-3/themerc
439
440 ## public headers ##
441
442 rrpubinclude_HEADERS = \
443         obrender/color.h \
444         obrender/font.h \
445         obrender/geom.h \
446         obrender/gradient.h \
447         obrender/image.h \
448         obrender/instance.h \
449         obrender/mask.h \
450         obrender/render.h \
451         obrender/theme.h \
452         obrender/version.h
453
454 obtpubinclude_HEADERS = \
455         obt/link.h \
456         obt/display.h \
457         obt/keyboard.h \
458         obt/xml.h \
459         obt/paths.h \
460         obt/prop.h \
461         obt/signal.h \
462         obt/util.h \
463         obt/version.h \
464         obt/xqueue.h
465
466 nodist_pkgconfig_DATA = \
467         obrender/obrender-3.5.pc \
468         obt/obt-3.5.pc
469
470 ## data ##
471
472 dist_apps_DATA = \
473         data/openbox.desktop
474
475 dist_pixmap_DATA = \
476         data/openbox.png
477
478 dist_rc_DATA = \
479         data/rc.xml \
480         data/menu.xml
481
482 edit = $(SED) \
483         -e 's!@version\@!$(VERSION)!' \
484         -e 's!@configdir\@!$(configdir)!' \
485         -e 's!@rcdir\@!$(rcdir)!' \
486         -e 's!@libexecdir\@!$(libexecdir)!' \
487         -e 's!@bindir\@!$(bindir)!'
488
489 data/autostart/autostart: $(top_srcdir)/data/autostart/autostart.in Makefile
490         @echo make: creating $@
491         @test -d $(shell dirname $(top_builddir)/$@) || \
492           mkdir $(shell dirname $(top_builddir)/$@)
493         @$(edit) $< >$(top_builddir)/$@
494
495 data/autostart/openbox-autostart: $(top_srcdir)/data/autostart/openbox-autostart.in Makefile
496         @echo make: creating $@
497         @test -d $(shell dirname $(top_builddir)/$@) || \
498           mkdir $(shell dirname $(top_builddir)/$@)
499         @$(edit) $< >$(top_builddir)/$@
500
501 %.desktop: %.desktop.in Makefile
502         @echo make: creating $@
503         @$(edit) $< >$@ 
504
505 %-session: %-session.in Makefile
506         @echo make: creating $@
507         @$(edit) $< >$@ 
508
509 %.1.in: %.1.sgml
510         @echo make: creating $@
511         @docbook-to-man $< >$@
512
513 %.1: %.1.in Makefile
514         @echo make: creating $@
515         @$(edit) $< >$@ 
516
517 dist_gnomewmfiles_DATA = \
518         data/gnome-wm-properties/openbox.desktop
519
520 nodist_xsessions_DATA = \
521         data/xsession/openbox.desktop \
522         data/xsession/openbox-gnome.desktop \
523         data/xsession/openbox-kde.desktop
524
525 dist_gnomesession_DATA = \
526         data/gnome-session/openbox-gnome.session \
527         data/gnome-session/openbox-gnome-fallback.session
528
529 dist_noinst_DATA = \
530         data/rc.xsd \
531         data/menu.xsd \
532         data/autostart/autostart.in \
533         data/autostart/openbox-autostart.in \
534         data/xsession/openbox.desktop.in \
535         data/xsession/openbox-gnome.desktop.in \
536         data/xsession/openbox-kde.desktop.in \
537         data/xsession/openbox-session.in \
538         data/xsession/openbox-gnome-session.in \
539         data/xsession/openbox-kde-session.in \
540         doc/openbox.1.sgml \
541         doc/openbox.1.in \
542         doc/openbox-session.1.sgml \
543         doc/openbox-session.1.in \
544         doc/openbox-gnome-session.1.sgml \
545         doc/openbox-gnome-session.1.in \
546         doc/openbox-kde-session.1.sgml \
547         doc/openbox-kde-session.1.in \
548         doc/obxprop.1.sgml \
549         doc/obxprop.1.in \
550         obrender/version.h.in \
551         obrender/obrender-3.5.pc.in \
552         obt/obt-3.5.pc.in \
553         obt/version.h.in \
554         tools/themeupdate/themeupdate.py \
555         tests/hideshow.py \
556         tests/Makefile \
557         tests/aspect.c \
558         tests/fullscreen.c \
559         tests/grav.c \
560         tests/grouptran.c \
561         tests/icons.c \
562         tests/modal2.c \
563         tests/modal3.c \
564         tests/modal.c \
565         tests/noresize.c \
566         tests/override.c \
567         tests/positioned.c \
568         tests/strut.c \
569         tests/title.c \
570         tests/urgent.c
571
572 dist_doc_DATA = \
573         COMPLIANCE \
574         README \
575         AUTHORS \
576         CHANGELOG \
577         COPYING \
578         data/rc.xsd \
579         data/menu.xsd \
580         doc/rc-mouse-focus.xml
581
582 nodist_man_MANS = \
583         doc/openbox.1 \
584         doc/openbox-session.1 \
585         doc/openbox-gnome-session.1 \
586         doc/openbox-kde-session.1 \
587         doc/obxprop.1
588
589 EXTRA_DIST = \
590         config.rpath
591
592 # make clean doesn't delete these for some reason, even though they are
593 # built by make
594 CLEANFILES = \
595         $(nodist_man_MANS) \
596         $(nodist_bin_SCRIPTS) \
597         $(nodist_xsessions_DATA) \
598         $(nodist_rc_SCRIPTS) \
599         $(nodist_libexec_SCRIPTS)
600
601 #doc:
602 #       $(MAKE) -$(MAKEFLAGS) -C doc/doxygen doc
603
604 distclean-local:
605         for d in . m4 po obrender parser obt openbox; do \
606                 for p in core core.* gmon.out *\~ *.orig *.rej .\#*; do \
607                         rm -f "$$d/$$p"; \
608                 done \
609         done
610
611 .PHONY: doc