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


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


desc
@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 = /cis/homes/rjj/iacc/iah-src
#IACCVERSION = iac++
IACCVERSION = bleeding

BLASTABLE_PTFILES =
CLOSUREOBJS       =

# This is for the  template version of histogram.
# We do not want it in the iah library
HEADERS =
LOBJS   =

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

# Use the following approach when you need to specify the .o files for a target

# sobel_edge: sobel_edge1.o sobel_edge2.o
#	$(LINK.cc) -o sobel_edge sobel_edge.o sobel_edge2.o $(LDLIBS)

#test-histogram:	test-histogram.o
#	$(LINK.cc) -o $@@ $@@.o

HANDBOOK =

TESTS = test-histogram  test-cumulative-histogram


tests: $(TESTS)
@
