123456789101112131415161718192021222324252627282930313233 |
- # $Id: Makefile,v 1.4 2002/08/16 13:55:42 dijkstra Exp $
- SUBDIR= lib mon monmux
- V=2.1
- .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|TODO|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
|