# GNUmakefile          Section: Support, Semi-Sphere-Image
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
# See comments in  gnumake.iah for description of symbols.

# NOTE: The development of this algorithm is not complete at this
#      time, do not include it in the library.

#######################################################################
# Modify the following symbols to control compilation
#######################################################################

BLASTABLE_PTFILES = IA_
CLOSUREOBJS       = closure-ssi.o

HEADERS = semi-sphere-image.h
LOBJS   =

SOURCES	= semi-sphere-image.h semi-sphere-image.c \
	  closure-ssi.c 
TESTS	= 

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

ssi.srcs:	semi-sphere-image.h semi-sphere-image.c

ifeq (${LIBTEST},)
semi-sphere-image.o:	ssi.srcs

closure-ssi.o:	closure-ssi.c  ssi.srcs

closure-ssi:	closure-ssi.o semi-sphere-image.o
	${LINK.cc} -o $@ $@.o semi-sphere-image.o ${LDLIBS}
	strip $@

else

endif
