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


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

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

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


desc
@GNUmakefile for the Image Descriptors chapter.
@


1.3
log
@Added  inclusion-relation  to the list of DIRS to process.
@
text
@# GNUmakefile          Chapter: 12, Image Descriptors
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
#   Image Descriptors algorithms

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

DIRS =	chain-code	inclusion-relation


include ../gnumake.iah-chp
@


1.2
log
@Now includes chapter level  gnumake.iah-chp  file.
@
text
@d11 1
a11 1
DIRS =	chain-code
@


1.1
log
@Initial revision
@
text
@d14 1
a14 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
@
