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


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

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


desc
@GNUmakefile for Edge Detection chapters.
@


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

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

DIRS =	\
	sobel \
	kirsch \
	hueckel

include ../gnumake.iah-chp
@


1.1
log
@Initial revision
@
text
@d15 1
a15 13

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

@
