Changeset 4


Ignore:
Timestamp:
Feb 25, 2003, 4:04:49 PM (20 years ago)
Author:
daniel
Message:

* empty log message *

Location:
trunk
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.am

    r2 r4  
    33## $Id$
    44
    5 SUBDIRS = src
     5SUBDIRS = src test
  • trunk/configure.ac

    r2 r4  
    1212AC_PROG_CXX
    1313AC_PROG_INSTALL
     14AC_PROG_RANLIB
    1415
    1516## BEGIN COMMON DENOMINATOR of DISTRIBUTION COMPILATION CFLAG
     
    4748
    4849# Misc libs, these should of course be set automatically
    49 BLAS_LIB="-lcblas -latlas"
    50 AC_SUBST(BLAS_LIB)
     50CBLAS_LIB="-lcblas -latlas"
     51AC_SUBST(CBLAS_LIB)
    5152GSL_LIB="-lgsl"
    5253AC_SUBST(GSL_LIB)
     54GSLWRAP_LIB="-lgslwrap"
     55AC_SUBST(GSLWRAP_LIB)
    5356MATH_LIB="-lm"
    5457AC_SUBST(MATH_LIB)
    5558
    56 # BASE specific settings
     59# c++_tools specific settings
     60
     61CPP_TOOLS_LIB="-lc++_tools"
     62CPP_TOOLS_LIB_LOCATION="src"
     63CPP_TOOLS_HEADER_LOCATION="src"
     64AC_SUBST(CPP_TOOLS_LIB)
     65AC_SUBST(CPP_TOOLS_LIB_LOCATION)
     66AC_SUBST(CPP_TOOLS_HEADER_LOCATION)
    5767
    5868AC_OUTPUT([
    5969  Makefile
    6070  src/Makefile
     71  test/Makefile
    6172    ])
  • trunk/src/Makefile.am

    r2 r4  
    22##
    33## $Id$
     4
     5lib_LIBRARIES = libc++_tools.a
     6
     7libc___tools_a_SOURCES = SVD.cc
     8
     9INCLUDES = -I/usr/local_bio/include -I/usr/local_bio
Note: See TracChangeset for help on using the changeset viewer.