# 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
