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


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

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

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

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


desc
@Process this file with gnumake
@


1.4
log
@Corrected spelling of stripped.
@
text
@# GNUmakefile          Section: 4.2  Binary Image Boundaries
#      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 = bib.h
LOBJS   = bib.o

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

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

bib.o:	bib.h bib.c

ifeq (${LIBTEST},)
test-bib.o:	test-bib.c  bib.o
test-bib:	test-bib.o  bib.o
	${LINK.cc} -o $@@ $@@.o bib.o ${LDLIBS}
	strip $@@

else
test-bib.o:	test-bib.c

endif
@


1.3
log
@Added algorithm name to header.  Made spelling and style changes.
@
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.2
d42 10
a51 1
test-bib:	test-bib.c  bib.h bib.c
@


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 = test-bib
a31 1

d33 1
a33 3

include ${TOP}/gnumake.iah

a35 2


d40 1
a40 7
# Use the following approach when you need to specify the .o files for a target


HANDBOOK =

TESTS =

d42 1
a42 1
tests: $(TESTS)
@
