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


1.2
date	94.07.21.03.46.24;	author rjj;	state Exp;
branches;
next	1.1;

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


desc
@Initial makefile for the Hopfield Neural Network algorithm.
@


1.2
log
@This version seems to work, but is using  bleeding  for iac++  sources.
@
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 = bleeding

BLASTABLE_PTFILES =
CLOSUREOBJS       =

HEADERS = hopfield.h make-examplars.h
LOBJS   = hopfield.o make-examplars.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
#######################################################################

# Use the following approach when you need to specify the .o files for a target


convert-hopfield-images.o: convert-hopfield-images.c convert-hopfield-images.h

test-convert: test-convert.o convert-hopfield-images.o
	$(LINK.cc) -o $@@ $@@.o convert-hopfield-images.o $(LDLIBS)
	strip $@@


make-examplars.o:  make-examplars.h  make-examplars.c


display-examplars: display-examplars.o make-examplars.o \
		convert-hopfield-images.o
	$(LINK.cc) -o $@@ $@@.o make-examplars.o \
		convert-hopfield-images.o  $(LDLIBS)
	strip $@@


hopfield-weights.o:	hopfield-weights.h  hopfield-weights.c

hopfield.o:	hopfield.h  hopfield.c


test-hopfield: test-hopfield.o make-examplars.o \
		convert-hopfield-images.o hopfield.o
	$(LINK.cc) -o $@@ $@@.o make-examplars.o \
		convert-hopfield-images.o hopfield.o $(LDLIBS)
	strip $@@

HANDBOOK =

TESTS = test-hopfield


tests: $(TESTS)
@


1.1
log
@Initial revision
@
text
@d10 1
a10 1
IACCVERSION = iac++
d15 2
a16 2
HEADERS =
LOBJS   =
d47 1
d52 1
d54 1
d57 1
d65 5
d71 1
a71 1
		convert-hopfield-images.o hopfield-weights.o hopfield.o
d73 2
a74 2
		convert-hopfield-images.o hopfield-weights.o hopfield.o \
		 $(LDLIBS)
d78 1
a78 1
TESTS =
@
