Makefile 261 Bytes
# Makefile pour compiler lapack + atlas avec gfortran + gcc
# Il faut au préalable placer le processeur en mode performance

all:
		( ./build.sh )

install:
		( cp ATLAS/install/lib/*.a $(BTREE)/lib )

clean:
		( rm -rf atlas-3.8.2 )
		( rm -rf lapack-3.1.1 )