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


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


desc
@Initial control version.
@


1.1
log
@Initial revision
@
text
@# Sample GNUMakefile to be used to compile the IAH algorithms.
# Initial revision
# See comments in  gnumake.iah for description of symbols.

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

TOP = /cis/vision4/rjj/iacc/iah-src
IACCVERSION = iac++

BLASTABLE_PTFILES =
CLOSUREOBJS =

HEADERS = loop-ps.h
LOBJS   = loop-ps.o

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 ${TOP}/gnumake.iah

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

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

test-loops: test-loops.o loop-ps.o
	$(LINK.cc) -o $@@ $@@.o loop-ps.o $(LDLIBS)


HANDBOOK = loop-ps.o

TESTS = test-loops


tests: $(TESTS)

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

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

@
