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


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


desc
@Initial version for the Hueckel algorithm suite.
@


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

TOP = ${HOME}/iacc/iah-src

IACCVERSION = iac++

BLASTABLE_PTFILES =
CLOSUREOBJS =

HEADERS = hueckel.h  hueckel-basis.h
LOBJS   = hueckel.o  hueckel-basis.o
SIMPLETESTS =

ARL =

EXTRAINCLUDES =
CPPFLAGS      =
OTHERLIBS     =

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


test-hueckel:  test-hueckel.o #hueckel.o hueckel-basis.o
#	$(LINK.cc) -o $@@ $@@.o hueckel.o hueckel-basis.o ${LDLIBS}
#	strip $@@

test-basis:	test-basis.o  #hueckel-basis.o
#	$(LINK.cc) -o $@@ $@@.o hueckel-basis.o ${LDLIBS}
#	strip $@@

hueckel-basis.o: hueckel-basis.c hueckel-basis.h

hueckel.o:	 hueckel.h hueckel.c

HANDBOOK = huecke.o hueckel-basis.o

TESTS = test-hueckel  test-basis


tests: $(TESTS)

#clean:
#	/bin/rm -f *~ *o

#spotless:
#	/bin/rm -f *~ *o
#	/bin/rm -f $(TESTS) $(HANDBOOK)
#	/bin/rm -fR ptrepository
@
