~ubuntu-branches/ubuntu/karmic/psicode/karmic

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck, Michael Banck, Daniel Leidert
  • Date: 2009-02-23 00:12:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090223001202-rutldoy3dimfpesc
Tags: 3.4.0-1
* New upstream release.

[ Michael Banck ]
* debian/patches/01_DESTDIR.dpatch: Refreshed.
* debian/patches/02_FHS.dpatch: Removed, applied upstream.
* debian/patches/03_debian_docdir: Likewise.
* debian/patches/04_man.dpatch: Likewise.
* debian/patches/06_466828_fix_gcc_43_ftbfs.dpatch: Likewise.
* debian/patches/07_464867_move_executables: Fixed and refreshed.
* debian/patches/00list: Adjusted.
* debian/control: Improved description.
* debian/patches-held: Removed.
* debian/rules (install/psi3): Do not ship the ruby bindings for now.

[ Daniel Leidert ]
* debian/rules: Fix txtdir via DEB_MAKE_INSTALL_TARGET.
* debian/patches/01_DESTDIR.dpatch: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
LDLIBS += $(LAPACK) $(BLAS)
7
7
PSILIBS = -lPSI_qt -lPSI_chkpt -lPSI_iwl -lPSI_psio -lPSI_ciomr -lPSI_ipv1
8
8
 
9
 
TRUESRC = \
10
 
cscf.c cleanup.c dft_inputs.c diis.c dmat.c \
11
 
dmat_2.c ecalc.c errchk.c findit.c \
12
 
formg2.c formgc.c formgo.c form_vec.c gprgid.c init_scf.c \
13
 
packit_c.c packit_o.c rdone.c rdtwo.c rotate_vector.c scf_input.c \
14
 
scf_iter.c scf_iter_2.c schmit.c sdot.c shalf.c check_rot.c phases.c\
15
 
guess.c sortev.c occ_fun.c init_uhf.c cmatsplit.c dmatuhf.c \
16
 
findit_uhf.c uhf_iter.c schmit_uhf.c diis2_uhf.c formg_direct.c \
17
 
orb_mix.c
 
9
CXXSRC = \
 
10
cscf.cc cleanup.cc dft_inputs.cc diis.cc dmat.cc \
 
11
dmat_2.cc ecalc.cc errchk.cc findit.cc \
 
12
formg2.cc formgc.cc formgo.cc form_vec.cc gprgid.cc init_scf.cc \
 
13
packit_c.cc packit_o.cc rdone.cc rdtwo.cc rotate_vector.cc scf_input.cc \
 
14
scf_iter.cc scf_iter_2.cc schmit.cc sdot.cc shalf.cc check_rot.cc phases.cc\
 
15
guess.cc sortev.cc occ_fun.cc init_uhf.cc cmatsplit.cc dmatuhf.cc \
 
16
findit_uhf.cc uhf_iter.cc schmit_uhf.cc diis2_uhf.cc formg_direct.cc \
 
17
orb_mix.cc
18
18
 
19
 
BINOBJ = $(TRUESRC:%.c=%.o)
 
19
BINOBJ = $(CXXSRC:%.cc=%.o)
20
20
 
21
21
include ../MakeRules
22
22
 
23
23
# Problems with optimization on with gcc-4.1.X compilers (TDC,4/4/07)
24
 
packit_o.o: packit_o.c
25
 
        $(CC) $(CDBG) $(CDEF) $(COTH) $(CINC) -c $< $(OUTPUT_OPTION)
 
24
packit_o.o: packit_o.cc
 
25
        $(CXX) $(CXXDBG) $(CXXDEF) $(CXXOTH) $(CXXINC) -c $< $(OUTPUT_OPTION)
26
26
 
27
27
ifneq ($(DODEPEND),no)
28
28
$(BINOBJ:%.o=%.d): $(DEPENDINCLUDE)
30
30
endif
31
31
 
32
32
install_man:: cscf.1
33
 
        $(MKDIRS) $(mandir)/man1
34
 
        $(INSTALL_INCLUDE) $^ $(mandir)/man1
 
33
        $(MKDIRS) $(DESTDIR)$(mandir)/man1
 
34
        $(INSTALL_INCLUDE) $^ $(DESTDIR)$(mandir)/man1