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


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

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

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

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


desc
@Process this file with gnumake.
@


1.4
log
@Corrected spelling of stripped.
@
text
@# GNUmakefile          Section: 4.4  Medial Axis Transform (MAT)
#      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 = mat.h
LOBJS   = mat.o

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

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
#######################################################################

mat.srcs:	mat.h  mat.c

mat.o:	mat.srcs

ifeq (${LIBTEST},)
test-mat.o:	test-mat.c  mat.o

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

else
test-mat.o:	test-mat.c

endif
@


1.3
log
@Added algorithm name to header.  Made spelling and style changes.
Added support for the inverse_medial_axis() function.
@
text
@d29 1
a29 1
# Make this nothing if you do not want programs striped.
@


1.2
log
@Removed TOP, general cleanup.
@
text
@d1 1
a1 1
# GNUmakefile          Section: 4.4
d40 15
@


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

d17 2
a18 1
SIMPLETESTS =
a31 1

d33 1
a33 3

include ${TOP}/gnumake.iah

a39 5
HANDBOOK =

TESTS = test-mat

tests: $(TESTS)
@
