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


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

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

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


desc
@GNUmakefile for the Edge Thinning & Boundary Finding chapter.
At this time, no algorithms have been implemented for this chapter.
@


1.3
log
@Now includes chapter level  gnumake.iah-chp  file.
@
text
@# GNUmakefile          Chapter: 7, Edge Thinning & Boundary Finding
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
#   Edge Thinning and Boundary Finding algorithms

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

# No algorithms implemented yet.
DIRS =	

ifeq (${DIRS},)
all:

clean:

spotless:

else

include ../gnumake.iah-chp

endif
@


1.2
log
@Wrapped targets so a recursive make would not generate spurious erros.
@
text
@a21 3
all:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE}); done
d23 1
a23 7
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
@d14 6
d21 1
d34 1
@
