~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/bin/dboc/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
include ../MakeVars
5
5
 
6
6
LD = $(CXX)
7
 
LDLIBS += $(LAPACK) $(BLAS)
 
7
LDLIBS += $(LAPACK) $(BLAS) -lpthread
8
8
 
9
9
PSILIBS = -lPSI_basis -lPSI_qt -lPSI_chkpt -lPSI_psio -lPSI_ciomr -lPSI_ipv1
10
10
 
11
11
CXXSRC = dboc.cc geom.cc print.cc moinfo.cc overlap.cc mo_overlap.cc linalg.cc\
12
 
        rhf.cc rohf.cc uhf.cc rci.cc roci.cc
13
 
#       rccsd.cc
 
12
hfwfn.cc rhf.cc rohf.cc uhf.cc rci.cc roci.cc stringblocks.cc ci_overlap.cc
14
13
 
15
14
BINOBJ = $(CXXSRC:%.cc=%.o)
16
15