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


1.1
date	94.09.29.19.25.44;	author jnw;	state Exp;
branches;
next	;


desc
@make file for sobel
@


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

BLASTABLE_PTFILES =
CLOSUREOBJS =

HEADERS = sobel.h
LOBJS   = sobel.o

SOURCES = sobel.h sobel.c test-sobel.c

TESTS = test-sobel

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 ../../gnumake.iah

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



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

LIBTEST =


ifeq (${LIBTEST},)
test-sobel: test-sobel.o sobel.o
	$(LINK.cc) -o test-sobel test-sobel.o sobel.o $(LDLIBS)
else
test-sobel: test-sobel.o
endif
@
