Ben
Yes according to your makefile you are linking with the ATLAS BLAS. ATLAS BLAS is an optimized BLAS library so that for sure is better than using the reference BLAS implementation that is provided with LAPACK. Now you might want to check how ATLAS has been installed on your machine. In general you (or your sys-admin) need to install ATLAS and then the ATLAS install procedure runs some experiments to tune the implementation for you architecture.
Is ATLAS a better way to go for ubuntu linux?
It's not much a question of Linux distribution you are working with than the machine you are working on. The fact that you are using Ubuntu, Fedora, Gentoo, etc. have very little importance for the performance of the BLAS. What is important is your machine.
Now which BLAS is the best for a given machine is an open question. Say that you can definitely consider GotoBLAS, ATLAS BLAS, your vendor BLAS implementation (Intel=MKL, AMD=ACML, Sun=Sunperf, IBM=ESSL, Apple=VecLib, etc.) or an independent vendor BLAS library. Then either you test all of those BLAS libraries and pick the best one or you simply pick the one you prefer knowing that all of those libraries are doing a very good job and are way better than a reference implementation.
Since you are concerned about speed on the Symmetric Eigenvalue Problem (SEP), maybe you can have a try with other alternatives than dsyev. For example for SEP, you can give a try with dsyevr, dsyevx, and dsyevd. In particular, dsyevx might be a good pick since you just want to compute the three largest eigenvalues and eigenvectors.
Julie