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


1.5
date	94.10.13.06.03.27;	author rjj;	state Exp;
branches;
next	1.4;

1.4
date	94.08.31.04.55.19;	author rjj;	state Exp;
branches;
next	1.3;

1.3
date	94.08.29.21.31.51;	author rjj;	state Exp;
branches;
next	1.2;

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

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.5
log
@Added algorith name to header, spelling changes.
@
text
@# GNUmakefile          Section: 2.6  Max-min Sharpening 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 = IA_
CLOSUREOBJS       = closure-max-min.o

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

SOURCES	= max-min.h max-min.c MM_Specials.c closure-max-min.c test-max-min.c
TESTS	= test-max-min

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

max-min.srcs:	max-min.h max-min.c

MM_Specials.o:	MM_Specials.c  max-min.srcs

closure-max-min.o:	closure-max-min.c  max-min.srcs

ifeq (${LIBTEST},)
test-max-min.o:	test-max-min.c MM_Specials.o

test-max-min:	test-max-min.o  MM_Specials.o
	${LINK.cc} -o $@@ $@@.o   MM_Specials.o  ${LDLIBS}
	strip $@@
else
test-max-min.o:	test-max-min.c
endif
@


1.4
log
@Removed max-min.o from CLOSUREOBJS and fixed test-max-min.o not
  being made for test-max-min target.
@
text
@d1 1
a1 1
# GNUmakefile          Section: 2.6
d29 1
a29 1
# Make this nothing if you do not want programs striped.
d41 1
a41 1
max-min.o:	max-min.h max-min.c  MM_Specials.o
d43 9
a51 2
test-max-min:	test-max-min.o  max-min.o  MM_Specials.o
	${LINK.cc} -o $@@ $@@.o max-min.o MM_Specials.o  ${LDLIBS}
d53 3
@


1.3
log
@Added MM_Specials.o to dependencies so it would be made correctly.
@
text
@d12 1
a12 1
CLOSUREOBJS       = closure-max-min.o max-min.o
d43 1
a43 1
test-max-min:	test-max-min.c  max-min.o  MM_Specials.o
@


1.2
log
@Removed TOP, general cleanup.
@
text
@d41 1
a41 1
max-min.o:	max-min.h max-min.c
d43 3
a45 1
test-max-min:	test-max-min.c max-min.h max-min.c
@


1.1
log
@Initial revision
@
text
@d1 4
a4 2
# Sample GNUMakefile to be used to compile the IAH algorithms.
# Initial revision
a10 3
TOP = /cis/homes/rjj/iacc/iah-src
IACCVERSION = iac++

d12 1
a12 1
CLOSUREOBJS       = closure-max-min
d17 2
a18 1
SIMPLETESTS =
d34 1
a34 3

include ${TOP}/gnumake.iah

a36 2


d41 1
a41 7
#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
d43 1
a43 1
tests: $(TESTS)
@
