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


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

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


desc
@GNUmakefile for the Walsh Transform.
@


1.2
log
@Added standard header, corrected spelling of stripped and
  added support for LIBTEST.
@
text
@# GNUmakefile          Section: 8.5, Walsh Transform
#      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	= walsh.h
LOBJS	= walsh-nd.o

SOURCES	= walsh.h walsh-nd.c test-walsh.c
TESTS	= test-walsh

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

ifeq (${LIBTEST},)

# Non-iterative verison

walsh-nd.o:	walsh.h  walsh-nd.c

test-walsh:  test-walsh.o  walsh-nd.o
	$(LINK.cc) -o $@@ $@@.o walsh-nd.o $(LDLIBS)
	strip $@@

# NOTE: I have not created the iterative version of the
#     	walsh.c yet, but it should be based on the fft-nd-iter.c code.
#

#walsh-nd-iter.o:	walsh.h  walsh-nd-iter.c

#test-walsh-iter:  test-walsh.o  walsh-nd-iter.o
#	$(LINK.cc) -o $@@  test-walsh.o walsh-nd-iter.o $(LDLIBS)
#	strip $@@

else

test-walsh.o:	test-walsh.c

endif
@


1.1
log
@Initial revision
@
text
@d1 1
a1 1
# GNUmakefile          Section: 8.5
d29 1
a29 1
# Make this nothing if you do not want programs striped.
d40 2
d59 6
@
