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


1.1
date	94.09.29.19.21.43;	author jnw;	state Exp;
branches;
next	;


desc
@make file for kirsch
@


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

BLASTABLE_PTFILES =
CLOSUREOBJS =

HEADERS = kirsch.h
LOBJS   = kirsch.o

SOURCES = kirsch.h kirsch.c test-kirsch.c

TESTS = test-kirsch

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

LIBTEST =


ifeq (${LIBTEST},)
test-kirsch: test-kirsch.o kirsch.o
	$(LINK.cc) -o test-kirsch test-kirsch.o kirsch.o $(LDLIBS)
else
test-kirsch: test-kirsch.o
endif
@
