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


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


desc
@Initial version of the Max-Min Sharpening algorithm.
@


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/homes/rjj/iacc/iah-src
IACCVERSION = iac++

BLASTABLE_PTFILES = IA_
CLOSUREOBJS       = closure-max-min

HEADERS = max-min.h
LOBJS   = MM_Specials.o

SIMPLETESTS =

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

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



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

#test-max-min:	test-max-min.o MM_Specials.o max-min.c max-min.h
#	$(LINK.cc) -o $@@ $@@.o MM_Specials.o $(LDLIBS)


HANDBOOK = MM_Specials.o

TESTS = test-max-min

tests: $(TESTS)
@
