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


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

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

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


desc
@GNUmakefile for the Hole filling algorithm.
@


1.3
log
@Added standard header and support for LIBTEST
@
text
@# GNUmakefile          Section: 11.5, Hole Filling
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
# See comments in  gnumake.iah for description of symbols.

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

BLASTABLE_PTFILES	=
CLOSUREOBJS		=

HEADERS	= holefill.h
LOBJS	= holefill.o

SOURCES	= holefill.h  holefill.c  test-holefill.c
TESTS	= test-holefill

ARL		=
EXTRAINCLUDES	=
CPPFLAGS	=

OUTPUT_OPTION	=
TARGET_ARCH	=
XTRAFLAGS	=
XTRACCFLAGS	=

# Make this nothing if you do not want programs stripped.
STRIPPROGRAMS = anystring-means-strip--no-string-means-do-not-strip

#######################################################################
include ../../gnumake.iah
#######################################################################

#######################################################################
#####	User program dependencies and rules follow
#######################################################################

ifeq (${LIBTEST},)

holefill.o:	holefill.h  holefill.c

test-holefill.o:	test-holefill.c  holefill.h

test-holefill:	holefill.o  test-holefill.o
	${LINK.cc} -o $@@ $@@.o holefill.o ${LDLIBS}
	strip $@@

else

test-holefill.o:	test-holefill.c

endif
@


1.2
log
@Modifed to support hollfill.c as an external routinue.
@
text
@d1 1
a1 1
# GNUmakefile          Section: 11.5, Hole-fills
d29 1
a29 1
# Make this nothing if you do not want programs striped.
d40 2
d44 1
a44 1
test-holefill.o:	test-holefill.c
d48 7
@


1.1
log
@Initial revision
@
text
@d14 2
a15 2
HEADERS	=
LOBJS	=
d17 2
a18 2
SOURCES	= holefill.c
TESTS	= holefill
d40 6
@
