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

« back to all changes in this revision

Viewing changes to doc/doxygen/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Michael Banck
  • Date: 2012-03-29 01:26:55 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120329012655-8lnngrup9p40ow4z
Tags: 3.4.0-3
* debian/control: Add CC3, MRCCSD and SCS-MP2 energies, RHF hessian and
  closed-shell MP2 gradient to features, clarify that MP2-R12 is an
  explicitly correlated method.
* debian/patches/09_system_libint.dpatch: New patch, modifies the build
  system to use the system libint and not compile and link in the shipped
  libint codes.
* debian/control (Build-Depends): Added libint-dev.
* debian/rules (DEB_MAKE_CHECK_TARGET): Run quicktests target to invoke the
  test suite.
* debian/rules: Rewritten for dh.
* debian/control (Build-Depends): Bumped debhelper version to 8, removed
  cdbs and dpatch.
* debian/patches: Moved to source version 3.0 (quilt).
* debian/source/format: New file.
* debian/rules (override_dh_auto_install): Install some test suite input
  files as examples.
* debian/dirs: Added examples directory.
* debian/TODO: Updated.
* debian/control (Standards-Version): Bumped to 3.9.3.
* debian/rules (override_dh_auto_test): Do not abort build on test suite
  failure.
* debian/rules (override_dh_auto_build): New rule, build the user manual in
  addition to the main code.
* debian/control (Build-Depends): Added texlive-latex-recommended.
* debian/patches/10_makerules_doc.patch: New patch, build the postscript
  file by default and deletes some more generated files on realclean.
* debian/rules (override_dh_auto_install): Install postscript user manual
  into documentation directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
include ../MakeVars
5
5
 
6
 
DOXYDIR = $(htmldir)/doxygen
 
6
DOXYDIR = $(DESTDIR)$(htmldir)/doxygen
7
7
DOXYCFG = doxygen.cfg
8
8
 
9
9
all:: html
12
12
html: $(DOXYCFG)
13
13
        $(DOXYGEN) $<
14
14
 
15
 
realclean::
16
 
        /bin/rm -rf html latex man
17
 
        /bin/rm -rf *~
 
15
realclean:: clean
 
16
        $(RM) -r html latex man
18
17
 
19
18
clean::
20
 
        /bin/rm -rf *~
 
19
        $(RM) -r *~
21
20
 
22
21
install:: install_html
23
22
 
24
23
.PHONY: install_html
25
24
install_html::
26
 
        $(MKDIRS) $(htmldir)/doxygen
 
25
        $(MKDIRS) $(DOXYDIR)
27
26
        $(INSTALL_DATA) html/* $(DOXYDIR)
28
27
 
29
28
include ../MakeRules