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


1.3
date	94.09.12.01.27.55;	author rjj;	state Exp;
branches;
next	1.2;

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

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


desc
@GNUmakefile for the Morphological Transforms chapter.
@


1.3
log
@Now includes chapter level  gnumake.iah-chp  file.
@
text
@# GNUmakefile          Chapter: 5, Morphological Transforms
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#

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

# Note, the hit-and-miss transform is implemented already as part of
#      the iac++ library (BDI template operation)
#DIRS =	  snp-noise-removal  hit-and-miss  rolling-ball
DIRS =	  snp-noise-removal  rolling-ball


include ../gnumake.iah-chp
@


1.2
log
@Commenting out hit-and-miss since it is not to be implemented,
  it is already a part of the iac++ library.
@
text
@d16 1
a16 11
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
@


1.1
log
@Initial revision
@
text
@d10 4
a13 1
DIRS =	  snp-noise-removal  hit-and-miss  rolling-ball
@
