1#ident "@(#)sub.htm	1.8 21/04/28 "
2###########################################################################
3# Written 2007-2019 by J. Schilling
4###########################################################################
5#
6# Manual page to html converting rules
7#
8###########################################################################
9# Copyright (c) J. Schilling
10###########################################################################
11# The contents of this file are subject to the terms of the
12# Common Development and Distribution License, Version 1.0 only
13# (the "License").  You may not use this file except in compliance
14# with the License.
15#
16# See the file CDDL.Schily.txt in this distribution for details.
17# A copy of the CDDL is also available via the Internet at
18# http://www.opensource.org/licenses/cddl1.txt
19#
20# When distributing Covered Code, include this CDDL HEADER in each
21# file and include the License file CDDL.Schily.txt from this distribution.
22###########################################################################
23
24html htmlx htmlxn:
25	$(NOECHO)if [ ".$(XMK_FILE)" != . ] ; then				\
26		for XMK_F in $(XMK_FILE) XxZzY-- ; do			\
27			(						\
28			if [ -r ./$$XMK_F ] ; then				\
29				echo "	==> MAKING \"install\" ON SUBCOMPONENT \"$(CURWDIR)/$$XMK_F\""; \
30				"$(MAKE)" -f $$XMK_F $(MAKEMACS) XARCH=$(XARCH) $@; \
31			else							\
32				if [ $$XMK_F != XxZzY-- ]; then		\
33					echo "NOTICE: Partial source ($(DIRNAME)/$$XMK_F) missing";\
34				fi;					\
35				:;					\
36			fi						\
37			);						\
38		done							\
39	else								\
40		: work around v7 shell bug;				\
41	fi
42