~ubuntu-branches/ubuntu/trusty/nwchem/trusty-proposed

« back to all changes in this revision

Viewing changes to src/nwdft/rt_tddft/matutils/GNUmakefile

  • Committer: Package Import Robot
  • Author(s): Michael Banck, Daniel Leidert, Andreas Tille, Michael Banck
  • Date: 2013-07-04 12:14:55 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130704121455-5tvsx2qabor3nrui
Tags: 6.3-1
* New upstream release.
* Fixes anisotropic properties (Closes: #696361).
* New features include:
  + Multi-reference coupled cluster (MRCC) approaches
  + Hybrid DFT calculations with short-range HF 
  + New density-functionals including Minnesota (M08, M11) and HSE hybrid
    functionals
  + X-ray absorption spectroscopy (XAS) with TDDFT
  + Analytical gradients for the COSMO solvation model
  + Transition densities from TDDFT 
  + DFT+U and Electron-Transfer (ET) methods for plane wave calculations
  + Exploitation of space group symmetry in plane wave geometry optimizations
  + Local density of states (LDOS) collective variable added to Metadynamics
  + Various new XC functionals added for plane wave calculations, including
    hybrid and range-corrected ones
  + Electric field gradients with relativistic corrections 
  + Nudged Elastic Band optimization method
  + Updated basis sets and ECPs 

[ Daniel Leidert ]
* debian/watch: Fixed.

[ Andreas Tille ]
* debian/upstream: References

[ Michael Banck ]
* debian/upstream (Name): New field.
* debian/patches/02_makefile_flags.patch: Refreshed.
* debian/patches/06_statfs_kfreebsd.patch: Likewise.
* debian/patches/07_ga_target_force_linux.patch: Likewise.
* debian/patches/05_avoid_inline_assembler.patch: Removed, no longer needed.
* debian/patches/09_backported_6.1.1_fixes.patch: Likewise.
* debian/control (Build-Depends): Added gfortran-4.7 and gcc-4.7.
* debian/patches/10_force_gcc-4.7.patch: New patch, explicitly sets
  gfortran-4.7 and gcc-4.7, fixes test suite hang with gcc-4.8 (Closes:
  #701328, #713262).
* debian/testsuite: Added tests for COSMO analytical gradients and MRCC.
* debian/rules (MRCC_METHODS): New variable, required to enable MRCC methods.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ifneq ($(OLD_GA),)
 
2
  EXTRA_OBJ += ga_zadd.o
 
3
endif
 
4
 
 
5
 
 
6
OBJ = \
 
7
convert_d2z.o \
 
8
convert_z2d.o \
 
9
pack_buffer2ga.o \
 
10
pack_ga2buffer.o \
 
11
matutils.o \
 
12
dmat_io.o \
 
13
zmat_diag.o \
 
14
zmat_inv.o \
 
15
zmat_checksum.o \
 
16
zmat_spectral_range.o \
 
17
zmat_max_abs_elem.o \
 
18
zmat_compare.o \
 
19
elem_compare.o \
 
20
calc_array_partitioning.o \
 
21
$(EXTRA_OBJ)
 
22
 
 
23
 
 
24
OBJ_OPTIMIZE = 
 
25
 
 
26
LIBRARY = libnwdft.a
 
27
 
 
28
USES_BLAS =
 
29
 
 
30
LIB_DEFINES = -DDEBUG_PRINT
 
31
 
 
32
 
 
33
##
 
34
## KAL: hack to allow symlinked directory
 
35
##
 
36
#LIB_INCLUDES = -I../../include -I../../../ddscf
 
37
LIB_INCLUDES = -I../headers -I$(NWCHEM_TOP)/src/nwdft/include -I$(NWCHEM)/src/ddscf
 
38
 
 
39
HEADERS = 
 
40
 
 
41
 
 
42
##
 
43
## KAL: hack to allow symlinked directory
 
44
##
 
45
#include ../../../config/makefile.h
 
46
#include ../../../config/makelib.h
 
47
include $(NWCHEM_TOP)/src/config/makefile.h
 
48
include $(NWCHEM_TOP)/src/config/makelib.h
 
49