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