Changeset 4
- Timestamp:
- Feb 25, 2003, 4:04:49 PM (21 years ago)
- Location:
- trunk
- Files:
-
- 5 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r2 r4 3 3 ## $Id$ 4 4 5 SUBDIRS = src 5 SUBDIRS = src test -
trunk/configure.ac
r2 r4 12 12 AC_PROG_CXX 13 13 AC_PROG_INSTALL 14 AC_PROG_RANLIB 14 15 15 16 ## BEGIN COMMON DENOMINATOR of DISTRIBUTION COMPILATION CFLAG … … 47 48 48 49 # Misc libs, these should of course be set automatically 49 BLAS_LIB="-lcblas -latlas"50 AC_SUBST( BLAS_LIB)50 CBLAS_LIB="-lcblas -latlas" 51 AC_SUBST(CBLAS_LIB) 51 52 GSL_LIB="-lgsl" 52 53 AC_SUBST(GSL_LIB) 54 GSLWRAP_LIB="-lgslwrap" 55 AC_SUBST(GSLWRAP_LIB) 53 56 MATH_LIB="-lm" 54 57 AC_SUBST(MATH_LIB) 55 58 56 # BASE specific settings 59 # c++_tools specific settings 60 61 CPP_TOOLS_LIB="-lc++_tools" 62 CPP_TOOLS_LIB_LOCATION="src" 63 CPP_TOOLS_HEADER_LOCATION="src" 64 AC_SUBST(CPP_TOOLS_LIB) 65 AC_SUBST(CPP_TOOLS_LIB_LOCATION) 66 AC_SUBST(CPP_TOOLS_HEADER_LOCATION) 57 67 58 68 AC_OUTPUT([ 59 69 Makefile 60 70 src/Makefile 71 test/Makefile 61 72 ]) -
trunk/src/Makefile.am
r2 r4 2 2 ## 3 3 ## $Id$ 4 5 lib_LIBRARIES = libc++_tools.a 6 7 libc___tools_a_SOURCES = SVD.cc 8 9 INCLUDES = -I/usr/local_bio/include -I/usr/local_bio
Note: See TracChangeset
for help on using the changeset viewer.