]> Dogcows Code - chaz/openbox/blob - Makefile.am
setup versioning for libotk that is separate from libobrender (and libobparser for...
[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 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 $(RR_CURRENT):$(RR_REVISION):$(RR_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 $(RR_CURRENT):$(RR_REVISION):$(RR_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 $(XINERAMA_CFLAGS) \
117 $(XKB_CFLAGS) \
118 $(XRANDR_CFLAGS) \
119 $(XSHAPE_CFLAGS) \
120 $(XSYNC_CFLAGS) \
121 $(GLIB_CFLAGS) \
122 -DG_LOG_DOMAIN=\"Obt\" \
123 -DLOCALEDIR=\"$(localedir)\" \
124 -DDATADIR=\"$(datadir)\" \
125 -DCONFIGDIR=\"$(configdir)\"
126 obt_libobt_la_LDFLAGS = \
127 -version-info $(OBT_CURRENT):$(OBT_REVISION):$(OBT_AGE)
128 obt_libobt_la_LIBADD = \
129 $(XINERAMA_LIBS) \
130 $(XKB_LIBS) \
131 $(XRANDR_LIBS) \
132 $(XSHAPE_LIBS) \
133 $(XSYNC_LIBS) \
134 $(GLIB_LIBS)
135 obt_libobt_la_SOURCES = \
136 obt/display.h \
137 obt/display.c \
138 obt/mainloop.h \
139 obt/mainloop.c \
140 obt/util.h
141
142 ## openbox ##
143
144 openbox_openbox_CPPFLAGS = \
145 $(SM_CFLAGS) \
146 $(X_CFLAGS) \
147 $(XCURSOR_CFLAGS) \
148 $(SM_CFLAGS) \
149 $(PANGO_CFLAGS) \
150 $(GLIB_CFLAGS) \
151 $(LIBSN_CFLAGS) \
152 $(XML_CFLAGS) \
153 -DLOCALEDIR=\"$(localedir)\" \
154 -DDATADIR=\"$(datadir)\" \
155 -DCONFIGDIR=\"$(configdir)\" \
156 -DG_LOG_DOMAIN=\"Openbox\"
157 openbox_openbox_LDADD = \
158 $(SM_LIBS) \
159 $(GLIB_LIBS) \
160 $(X_LIBS) \
161 $(XCURSOR_LIBS) \
162 $(LIBSN_LIBS) \
163 $(XML_LIBS) \
164 $(EFENCE_LIBS) \
165 $(LIBINTL) \
166 render/libobrender.la \
167 parser/libobparser.la \
168 obt/libobt.la
169 openbox_openbox_LDFLAGS = -export-dynamic
170 openbox_openbox_SOURCES = \
171 gettext.h \
172 openbox/actions/all.c \
173 openbox/actions/all.h \
174 openbox/actions/addremovedesktop.c \
175 openbox/actions/breakchroot.c \
176 openbox/actions/close.c \
177 openbox/actions/cyclewindows.c \
178 openbox/actions/debug.c \
179 openbox/actions/decorations.c \
180 openbox/actions/desktop.c \
181 openbox/actions/dockautohide.c \
182 openbox/actions/directionalwindows.c \
183 openbox/actions/execute.c \
184 openbox/actions/exit.c \
185 openbox/actions/focus.c \
186 openbox/actions/focustobottom.c \
187 openbox/actions/fullscreen.c \
188 openbox/actions/growtoedge.c \
189 openbox/actions/iconify.c \
190 openbox/actions/if.c \
191 openbox/actions/kill.c \
192 openbox/actions/layer.c \
193 openbox/actions/lower.c \
194 openbox/actions/maximize.c \
195 openbox/actions/move.c \
196 openbox/actions/moverelative.c \
197 openbox/actions/moveresizeto.c \
198 openbox/actions/movetoedge.c \
199 openbox/actions/omnipresent.c \
200 openbox/actions/raise.c \
201 openbox/actions/raiselower.c \
202 openbox/actions/reconfigure.c \
203 openbox/actions/resize.c \
204 openbox/actions/resizerelative.c \
205 openbox/actions/restart.c \
206 openbox/actions/shade.c \
207 openbox/actions/showdesktop.c \
208 openbox/actions/showmenu.c \
209 openbox/actions/unfocus.c \
210 openbox/actions.c \
211 openbox/actions.h \
212 openbox/client.c \
213 openbox/client.h \
214 openbox/client_list_menu.c \
215 openbox/client_list_menu.h \
216 openbox/client_list_combined_menu.c \
217 openbox/client_list_combined_menu.h \
218 openbox/client_menu.c \
219 openbox/client_menu.h \
220 openbox/config.c \
221 openbox/config.h \
222 openbox/debug.c \
223 openbox/debug.h \
224 openbox/dock.c \
225 openbox/dock.h \
226 openbox/event.c \
227 openbox/event.h \
228 openbox/focus.c \
229 openbox/focus.h \
230 openbox/focus_cycle.c \
231 openbox/focus_cycle.h \
232 openbox/focus_cycle_indicator.c \
233 openbox/focus_cycle_indicator.h \
234 openbox/focus_cycle_popup.c \
235 openbox/focus_cycle_popup.h \
236 openbox/frame.c \
237 openbox/frame.h \
238 openbox/framerender.c \
239 openbox/framerender.h \
240 openbox/geom.h \
241 openbox/grab.c \
242 openbox/grab.h \
243 openbox/group.c \
244 openbox/group.h \
245 openbox/keyboard.c \
246 openbox/keyboard.h \
247 openbox/keytree.c \
248 openbox/keytree.h \
249 openbox/menuframe.c \
250 openbox/menuframe.h \
251 openbox/menu.c \
252 openbox/menu.h \
253 openbox/misc.h \
254 openbox/modkeys.c \
255 openbox/modkeys.h \
256 openbox/mouse.c \
257 openbox/mouse.h \
258 openbox/moveresize.c \
259 openbox/moveresize.h \
260 openbox/mwm.h \
261 openbox/openbox.c \
262 openbox/openbox.h \
263 openbox/ping.c \
264 openbox/ping.h \
265 openbox/place.c \
266 openbox/place.h \
267 openbox/popup.c \
268 openbox/popup.h \
269 openbox/prop.c \
270 openbox/prop.h \
271 openbox/resist.c \
272 openbox/resist.h \
273 openbox/screen.c \
274 openbox/screen.h \
275 openbox/session.c \
276 openbox/session.h \
277 openbox/stacking.c \
278 openbox/stacking.h \
279 openbox/startupnotify.c \
280 openbox/startupnotify.h \
281 openbox/translate.c \
282 openbox/translate.h \
283 openbox/window.c \
284 openbox/window.h
285
286 ## gnome-panel-control ##
287
288 tools_gnome_panel_control_gnome_panel_control_CPPFLAGS = \
289 $(X_CFLAGS)
290 tools_gnome_panel_control_gnome_panel_control_LDADD = \
291 $(X_LIBS)
292 tools_gnome_panel_control_gnome_panel_control_SOURCES = \
293 tools/gnome-panel-control/gnome-panel-control.c
294
295
296 ## default button masks ##
297 dist_docxbm_DATA = \
298 data/xbm/bullet.xbm \
299 data/xbm/close.xbm \
300 data/xbm/desk_toggled.xbm \
301 data/xbm/desk.xbm \
302 data/xbm/iconify.xbm \
303 data/xbm/max_toggled.xbm \
304 data/xbm/max.xbm \
305 data/xbm/shade_toggled.xbm \
306 data/xbm/shade.xbm
307
308
309 ## themes ##
310
311 clearlooks_themedir = $(themedir)/Clearlooks/openbox-3
312 dist_clearlooks_theme_DATA= \
313 themes/Clearlooks/openbox-3/themerc
314
315 clearlooksolive_themedir = $(themedir)/Clearlooks-Olive/openbox-3
316 dist_clearlooksolive_theme_DATA= \
317 themes/Clearlooks-Olive/openbox-3/themerc
318
319 mikachu_themedir = $(themedir)/Mikachu/openbox-3
320 dist_mikachu_theme_DATA= \
321 themes/Mikachu/openbox-3/bullet.xbm \
322 themes/Mikachu/openbox-3/close.xbm \
323 themes/Mikachu/openbox-3/desk.xbm \
324 themes/Mikachu/openbox-3/iconify.xbm \
325 themes/Mikachu/openbox-3/max.xbm \
326 themes/Mikachu/openbox-3/themerc
327
328
329 natura_themedir = $(themedir)/Natura/openbox-3
330 dist_natura_theme_DATA= \
331 themes/Natura/openbox-3/close_hover.xbm \
332 themes/Natura/openbox-3/close.xbm \
333 themes/Natura/openbox-3/desk_toggled.xbm \
334 themes/Natura/openbox-3/desk_hover.xbm \
335 themes/Natura/openbox-3/desk.xbm \
336 themes/Natura/openbox-3/iconify_hover.xbm \
337 themes/Natura/openbox-3/iconify.xbm \
338 themes/Natura/openbox-3/max_hover.xbm \
339 themes/Natura/openbox-3/max_toggled.xbm \
340 themes/Natura/openbox-3/max.xbm \
341 themes/Natura/openbox-3/shade.xbm \
342 themes/Natura/openbox-3/shade_hover.xbm \
343 themes/Natura/openbox-3/themerc
344
345 artwizboxed_themedir = $(themedir)/Artwiz-boxed/openbox-3
346 dist_artwizboxed_theme_DATA= \
347 themes/Artwiz-boxed/openbox-3/themerc
348
349 bear2_themedir = $(themedir)/Bear2/openbox-3
350 dist_bear2_theme_DATA= \
351 themes/Bear2/openbox-3/close_pressed.xbm \
352 themes/Bear2/openbox-3/close.xbm \
353 themes/Bear2/openbox-3/desk_toggled.xbm \
354 themes/Bear2/openbox-3/desk.xbm \
355 themes/Bear2/openbox-3/iconify_pressed.xbm \
356 themes/Bear2/openbox-3/iconify.xbm \
357 themes/Bear2/openbox-3/max_pressed.xbm \
358 themes/Bear2/openbox-3/max_toggled.xbm \
359 themes/Bear2/openbox-3/max.xbm \
360 themes/Bear2/openbox-3/shade_pressed.xbm \
361 themes/Bear2/openbox-3/shade.xbm \
362 themes/Bear2/openbox-3/themerc
363
364 orang_themedir = $(themedir)/Orang/openbox-3
365 dist_orang_theme_DATA= \
366 themes/Orang/openbox-3/themerc
367
368 onyx_themedir = $(themedir)/Onyx/openbox-3
369 dist_onyx_theme_DATA= \
370 themes/Onyx/openbox-3/themerc
371
372 onyxcitrus_themedir = $(themedir)/Onyx-Citrus/openbox-3
373 dist_onyxcitrus_theme_DATA= \
374 themes/Onyx-Citrus/openbox-3/themerc
375
376 syscrash_themedir = $(themedir)/Syscrash/openbox-3
377 dist_syscrash_theme_DATA= \
378 themes/Syscrash/openbox-3/max_disabled.xbm \
379 themes/Syscrash/openbox-3/max_pressed.xbm \
380 themes/Syscrash/openbox-3/max_toggled.xbm \
381 themes/Syscrash/openbox-3/max.xbm \
382 themes/Syscrash/openbox-3/themerc
383
384 ## public headers ##
385
386 pubinclude_HEADERS = \
387 render/color.h \
388 render/font.h \
389 render/geom.h \
390 render/gradient.h \
391 render/image.h \
392 render/instance.h \
393 render/mask.h \
394 render/render.h \
395 render/theme.h \
396 parser/parse.h \
397 obt/display.h \
398 obt/mainloop.h \
399 obt/util.h
400
401 nodist_pubinclude_HEADERS = \
402 version.h
403
404 nodist_pkgconfig_DATA = \
405 render/obrender-4.0.pc \
406 parser/obparser-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 version.h.in \
450 data/rc.xsd \
451 data/menu.xsd \
452 data/xsession/openbox.desktop.in \
453 data/xsession/openbox-gnome.desktop.in \
454 data/xsession/openbox-kde.desktop.in \
455 data/xsession/openbox-session.in \
456 data/xsession/openbox-gnome-session.in \
457 data/xsession/openbox-kde-session.in \
458 doc/openbox.1.sgml \
459 doc/openbox.1.in \
460 doc/openbox-session.1.sgml \
461 doc/openbox-session.1.in \
462 doc/openbox-gnome-session.1.sgml \
463 doc/openbox-gnome-session.1.in \
464 doc/openbox-kde-session.1.sgml \
465 doc/openbox-kde-session.1.in \
466 render/obrender-4.0.pc.in \
467 parser/obparser-4.0.pc.in \
468 obt/obt-4.0.pc.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
This page took 0.067548 seconds and 4 git commands to generate.