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


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

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


desc
@Chapter level GNUmakefile to support the statisitical algorithms.
Note that it is expected that only the histogram-iter version
  will actively support the closure, headers, and lib targets.
@


1.2
log
@Now includes chapter level  gnumake.iah-chp  file.
@
text
@# GNUmakefile          Section: Statistical algorithms
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
# This file may be used directly to build each of the
#   Statistical Features algorithms in turn.

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

DIRS =	histogram-iter



include ../gnumake.iah-chp


# This is the iterative version of the algorithm,
#  it should be placed in the library by default.
histogram-iter-dir:
	cd histogram-iter; ${MAKE}

# This is the template version of the algorithm, it does not go
#   in library unless specifically put there.
histogram-dir:
	cd histogram; ${MAKE}
@


1.1
log
@Initial revision
@
text
@a13 3
all:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE}) ; done
a14 3
clean:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE} clean); done
d16 1
a16 3
spotless:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE} spotless); done
@
