#
# $Header: Makefile,v 1.1 89/01/23 15:22:02 rml Exp $
#
#
DESTDIR=
CFLAGS=	-O

# Programs that live in subdirectories, and have makefiles of their own.
#
SUBDIR=	XV11R3

all:	${SUBDIR}

${SUBDIR}: FRC
	cd $@; make ${MFLAGS} World
	@echo "------------------------------"

FRC:
	
install:
	-for i in ${SUBDIR}; do \
		(cd $$i; make ${MFLAGS} World); \
		(cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done

clean:
	rm -f a.out core *.s *.o errs Errs
	for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
