# /usr/src/old/Makefile for MacMach

include /usr/src/COPYRIGHTS

DESTDIR=
SUBDIR=	compact

all:	${SUBDIR}

${SUBDIR}: FRC
	cd $@; make ${MFLAGS}

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

clean:	FRC
	-for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done

compress: clean
	find . -type f ! -name Makefile ! -name '*.Z' -exec compress {} \;

uncompress:	FRC
	find . -type f ! -name Makefile -name '*.Z' -exec uncompress {} \;

FRC:
