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


1.5
date	95.01.06.06.42.34;	author rjj;	state Exp;
branches;
next	1.4;

1.4
date	94.09.12.01.31.56;	author rjj;	state Exp;
branches;
next	1.3;

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

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

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


desc
@gnumake all
  will compile all support code provided by this directory and
  install the headers and library modules.
@


1.5
log
@Added semi-sphere-image to the list of directoris to be build when
  building the support algorithms.
@
text
@# GNUmakefile          Section: support, not directly in IAH
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
# GNUMakefile to be used to compile the IAH support algorithms.
# This file may be used directly to build each of the
#   support algorithms in turn.
#
# To make all of the support directories, simply invoke: gnumake
#   in this directory.

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

DIRS =	gauss  loop-pointset  \
	scale-to-uchar  shaped-pointset  semi-sphere-image

include ../gnumake.iah-chp
@


1.4
log
@Now includes chapter level  gnumake.iah-chp  file.
@
text
@d16 2
a17 2
DIRS =	gauss  loop-pointset  scale-to-uchar  shaped-pointset

@


1.3
log
@Added clean to spotless target, to force clean up of chapters dir.
@
text
@a17 3
all:
	for subdir in ${DIRS} ; \
	do  (cd $${subdir}; ${MAKE}); done
d19 1
a19 8
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
@


1.2
log
@Removal of all references to TOP, and general cleanup.
@
text
@d27 1
a27 1
spotless:
@


1.1
log
@Initial revision
@
text
@d1 4
d6 5
a10 2
# This file may be used directly to build each of the support
#   algorithms in turn.
d16 1
a16 4
LOCALTOP = ..
ifeq (${TOP},)
TOP = ${LOCALTOP}
endif
a17 8

DIRS =	gauss \
	loop-pointset \
	scale-to-uchar \
	shaped-pointset



d20 1
a20 4
	do \
		cd $${subdir}; ${MAKE} TOP=${TOP}; \
		cd .. ; \
	done
d25 1
a25 1
	do  cd $${subdir}; ${MAKE} clean  TOP=${TOP}; cd .. ; done
d29 1
a29 14
	do  cd $${subdir}; ${MAKE} spotless  TOP=${TOP} ;  cd ..; done


gauss-dir:
	cd gauss; ${MAKE} all  TOP=${TOP}

loop-pointset-dir:
	cd loop-pointset; ${MAKE} all  TOP=${TOP}

scale-to-uchar-dir:
	cd scale-to-uchar; ${MAKE} all  TOP=${TOP}

shaped-pointset-dir:
	cd shaped-pointset; ${MAKE} all  TOP=${TOP}
@
