diff options
| author | Daniel Burrows <dburrows@debian.org> | 2010-04-25 17:33:16 -0700 |
|---|---|---|
| committer | Daniel Burrows <dburrows@debian.org> | 2010-04-25 17:33:16 -0700 |
| commit | 7e862bf1234319b471624c0bd9ca6ec2ebac96ae (patch) | |
| tree | eb1ca32cacabb5bcd7a6009997fbd4c54a475595 /doc | |
| parent | c4bbf156cef2de3894f5eb7f92fbf0fab4ab2e4e (diff) | |
| download | aptitude-7e862bf1234319b471624c0bd9ca6ec2ebac96ae.tar.gz | |
Write a build skeleton for the docs directory that's complete enough to build the Czech documentation.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/SConscript | 18 | ||||
| -rw-r--r-- | doc/cs/SConscript | 9 |
2 files changed, 27 insertions, 0 deletions
diff --git a/doc/SConscript b/doc/SConscript new file mode 100644 index 00000000..a45522c0 --- /dev/null +++ b/doc/SConscript @@ -0,0 +1,18 @@ +Import('docs_env') + +docs_env.Dist([ + 'Makefile.am', + 'aptitude-common.xsl', + 'aptitude-db2latex.xsl', + 'aptitude-html.xsl', + 'aptitude-man.xsl', + 'aptitude-txt.xsl', + 'aptitude.css', + 'fixup-text', + 'html-to-text', + ]) + +SConscript(dirs = [ + 'cs', + # TODO: everyone else. + ]) diff --git a/doc/cs/SConscript b/doc/cs/SConscript new file mode 100644 index 00000000..4734c957 --- /dev/null +++ b/doc/cs/SConscript @@ -0,0 +1,9 @@ +Import('docs_env') +docs_env.Dist( + 'Makefile.am', + 'SConscript', + ) + +docs_env.AptitudeStandaloneDocs( + 'cs', + ) |
