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