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


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

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


desc
@GNUmakefile for the Thresholding chapter.
@


1.2
log
@Revised to include a top level file which defines standard targets.
This makes it easier to modify global behavior for all of the
   IAH chapter directories.
@
text
@# GNUmakefile          Chapter: 3, Thresholding Techniques
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#

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

DIRS	= global  semi  otsu  sis

include	../gnumake.iah-chp
@


1.1
log
@Initial revision
@
text
@d12 1
a12 12
all:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE}); done

clean:
	/bin/rm -f *~; \
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE} clean); done

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