| 123456789101112131415161718192021222324252627282930313233 | 
							- # $Id: Makefile,v 1.6 2002/08/31 15:54:57 dijkstra Exp $
 
- SUBDIR=	lib mon monmux 
 
- V=2.3
 
- .if make(clean)
 
- SUBDIR+= ports/mon
 
- .endif
 
- .include "Makefile.inc"
 
- all: _SUBDIRUSE
 
- clean: _SUBDIRUSE
 
- install: _SUBDIRUSE
 
- # Not all the stuff that I'm working on is ready for release
 
- dist: clean
 
- 	@workdir=`basename ${.CURDIR}`; \
 
- 	cd ..; \
 
- 	echo Exporting mon-${V}.tar.gz; \
 
- 	find $${workdir} -type f -print | egrep -v 'CVS|doc|clients|README|regress|#'| \
 
- 		tar -czvf mon-${V}.tar.gz -I -
 
- _SUBDIRUSE: .USE
 
- .if defined(SUBDIR)
 
- 	@for entry in ${SUBDIR}; do \
 
- 		echo "===> $${entry}"; \
 
- 		cd ${.CURDIR}/$${entry}; \
 
- 		${MAKE} ${.MAKEFLAGS} ${.TARGET}; \
 
- 	done
 
- .endif
 
 
  |