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


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

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


desc
@GNUmakefile for chapter 2, Image Enhancement.
@


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

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

# Note: the median3x3 should not put anything in the library, it
#      should only compile the test program
DIRS =	local-averaging \
	max-min \
	median3x3 \
	median-nbhd \
#	histo-mod


include ../gnumake.iah-chp
@


1.1
log
@Initial revision
@
text
@d18 1
a18 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
@
