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


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

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

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


desc
@GNUmakefile for Neural Networks chapter.
@


1.3
log
@Added the  'slp'  directory to the DIRS macro to include
  automatic compiling support for IAH 13.5.
@
text
@# GNUmakefile          Chapter: 13, Neural Networks
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
#   Neural Networks algorithms

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

DIRS =	hopfield  slp


include ../gnumake.iah-chp
@


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


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

@
