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


1.6
date	94.09.01.02.11.59;	author rjj;	state Exp;
branches;
next	1.5;

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

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

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

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

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


desc
@Initial control version.
@


1.6
log
@Modified test-loops targets so it would use local files
  we being build, and not rebuild the library for loop-ps.o
@
text
@# GNUmakefile          Section: NONE, support algorithm
#      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 = loop-ps.h
LOBJS   = loop-ps.o

SOURCES	= loop-ps.h  loop-ps.c  test-loops.c
TESTS	= test-loops

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

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

loop-ps.o:	loop-ps.c loop-ps.h

test-loops.o: test-loops.c

test-loops:	test-loops.o loop-ps.o
	${LINK.cc} -o $@@ $@@.o loop-ps.o ${LDLIBS}
	strip $@@
@


1.5
log
@Added support for the testprogs target.
Added SOURCES definition for spotless target.
@
text
@d39 5
a43 1
test-loops.o: test-loops.c  headers lib
@


1.4
log
@Removed TOP, general clean up.
@
text
@d16 3
d39 1
a39 6
test-loops: test-loops.o lib

TESTS = test-loops

tests: $(TESTS)

@


1.3
log
@Added support for compilation when TOP is undefined.
@
text
@d1 3
a3 2
# Sample GNUMakefile to be used to compile the IAH algorithms.
# Initial revision
a9 6
LOCALTOP = ../..
ifeq (${TOP},)
TOP = ${LOCALTOP}
endif


a27 1

d30 1
a30 1
include ${TOP}/gnumake.iah
a36 1
	$(LINK.cc) -o $@@ $@@.o $(LDLIBS)
a37 3

HANDBOOK =

a38 1

@


1.2
log
@Cleaning up to fit with global definitions in gnumake.iah
@
text
@d9 6
@


1.1
log
@Initial revision
@
text
@a8 3
TOP = /cis/vision4/rjj/iacc/iah-src
IACCVERSION = iac++

d36 2
a37 2
test-loops: test-loops.o loop-ps.o
	$(LINK.cc) -o $@@ $@@.o loop-ps.o $(LDLIBS)
d40 1
a40 1
HANDBOOK = loop-ps.o
a45 8

clean:
	/bin/rm -f *~ *o

spotless:
	/bin/rm -f *~ *o
	/bin/rm -f $(TESTS) $(HANDBOOK)
	/bin/rm -fR ptrepository
@
