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


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

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


desc
@Process with gnumake.
@


1.2
log
@Removed TOP, addes SOURCES, modified TESTS, general cleanup.
Made test targets use local versions rather than extract from the library.
@
text
@# GNUmakefile          Section: 12.2, Chain Code
#      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 = chain-code.h
LOBJS   = chain-code.o

SOURCES	= chain-code.h chain-code.c  test-chain-code.c
TESTS	= test-chain-code

ARL =
EXTRAINCLUDES =
CPPFLAGS =

OUTPUT_OPTION =
TARGET_ARCH   =
XTRAFLAGS     =
XTRACCFLAGS   =

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


#######################################################################

include	../../gnumake.iah

#######################################################################

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

chain-code.o:	chain-code.h chain-code.c

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


1.1
log
@Initial revision
@
text
@d1 4
a4 2
# Sample GNUMakefile to be used to compile the IAH algorithms.
# Initial revision
a10 4
TOP = /cis/homes/rjj/iacc/iah-src
#IACCVERSION = iac++
IACCVERSION = bleeding

d17 2
a18 1
SIMPLETESTS =
d35 1
a35 1
include ${TOP}/gnumake.iah
d43 1
a43 3
HANDBOOK =

TESTS = test-chain-code
d45 3
a47 1
tests: $(TESTS)
@
