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


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


desc
@GNUmakefile for the Single Layer Perceptron algorithm.
@


1.1
log
@Initial revision
@
text
@# GNUmakefile          Section: 13.5  Single Layer Perceptron (SLP)
#      Copyright 1994, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
# See comments in  gnumake.iah for description of symbols.

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

#LOCALIACCVERSION	= iac++
#LOCALIAHVERSION	=
BLASTABLE_PTFILES	=
CLOSUREOBJS		=

HEADERS	= slp.h
LOBJS	= slp.o

SOURCES	= test-slp.c  slp.h  slp.c
TESTS	= test-slp

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

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

ifeq (${LIBTEST},)

slp.o:	slp.h  slp.c

test-slp:	test-slp.o  slp.o
	${LINK.cc} -o $@@ $@@.o slp.o ${LDLIBS}

else

endif
@
