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


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


desc
@Make file for the Hough line detection algorithm.
Still has some problems with checking out everything when RCS'd.
@


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 =
CLOSUREOBJS       =

HEADERS = hough.h
LOBJS   = hough.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
#######################################################################


hough.o: hough.h hough.c

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

HANDBOOK =

TESTS = test-hough


tests: $(TESTS)
@
