####################################################################
# Makefile for 
# $Id: Makefile.Linux,v 1.2 2004/03/29 15:54:02 rayg Exp $
####################################################################

# usage: "make depend" after changes are made to the makefile
#        "make lib" to make a library (.a) file
#        "make" to make an executable file

# Library (.a files) path for things we're dependent on
LIBRARYPATH=-L/home/rayg/opt/atlas/lib/Linux_P4SSE2_2 -L/home/rayg/opt/blitz/lib

# Include files (.h, .fi) path
INCLUDEPATH=-I/home/rayg/opt/atlas/include -I/home/rayg/opt/blitz/include -I/usr/local/include  

# libraries to link in
LIBRARIES=-lblitz -lcblas -latlas -lstdc++ 

FRAMEWORKS=

# compiler and option selection
# optimization: -mpentiumpro for Pentium Pro, Pentium II, III
#               optimization levels -O, -O2, -O3
OPTIMS= 
CFLAGS= -g $(INCLUDEPATH) $(OPTIMS)
FFLAGS= -g -Wall $(INCLUDEPATH) $(OPTIMS)
LDFLAGS= -g
CC= gcc
CXX= c++
FC= g77
LD= c++

include Makefile.Common
