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


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


desc
@fft was developed using a Makefile, but it is now using a GNUmakefile.
Process this file with gnumake.
@


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 = ${HOME}/iacc/iah-src

IACCVERSION = bleeding

BLASTABLE_PTFILES =
CLOSUREOBJS =

HEADERS = fft.h

# Only will put the iter version of the fft in the library, its faster...
LOBJS =   fft-nd-iter.o

SIMPLETESTS = 

ARL =

EXTRAINCLUDES =
CPPFLAGS =
OTHERLIBS =

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

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



#######################################################################
#####	User program dependencies and rules follow
#######################################################################

#### The iter versions of the fft code & tests
####
test-fft-iter:  test-fft.o fft-nd-iter.o
	$(LINK.cc) -o test-fft-iter test-fft.o $(LDLIBS)


test-fft-all-iter:  test-fft-all.o fft-nd-iter.o
	$(LINK.cc) -o test-fft-all-iter test-fft-all.o $(LDLIBS)



#### The template versions of the fft code & tests
####
test-fft:  test-fft.o fft-nd.o
	$(LINK.cc) -o test-fft test-fft.o fft-nd.o $(LDLIBS)

test-fft-all:  test-fft-all.o fft-nd.o
	$(LINK.cc) -o test-fft-all test-fft-all.o fft-nd.o $(LDLIBS)



HANDBOOK =

TESTS = 


tests: $(TESTS)

@
