head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	94.09.12.01.20.20;	author rjj;	state Exp;
branches;
next	1.1;

1.1
date	94.08.29.01.42.52;	author rjj;	state Exp;
branches;
next	;


desc
@GNUmakefile for the Connected Component chapter.
@


1.2
log
@Now includes chapter level  gnumake.iah-chp  file.
@
text
@# GNUmakefile          Chapter: 11, Connected Component
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
#   Connected Component algorithms

#######################################################################
# Modify the following symbols to control compilation
#######################################################################

DIRS =	\
	counting-by-shrinking \
	hole-fill \
	euler

include ../gnumake.iah-chp
@


1.1
log
@Initial revision
@
text
@d16 1
a16 12

all:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE}); done

clean:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE} clean); done

spotless:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE} spotless); done
@
