#
# Makefile,v 1.2 1992/05/17 05:17:45 snl Exp
#
# Makefile for man pages
#

PAGES=\
BOS.3		Bos_Copy.3	Bos_Find.3	Bos_RmSlot.3	Bos_Tcl.3\
Bos_AddSlot.3	Bos_CreateObj.3	Bos_Hooks.3	Bos_Send.3\
Bos_CTypes.3	Bos_Destroy.3	Bos_Init.3	Bos_SetSlot.3

all:

install: $(PAGES)
	-mkdir $(DEST_DIR)/man/man3
	@echo Installing libbos man pages ...
	@for i in $?; do\
		cp $$i $(DEST_DIR)/man/man3;\
	done
	@touch install

clean-install:
	/bin/rm -f install

clean:
	/bin/rm -f install
