diff options
author | Roger Dingledine <arma@torproject.org> | 2006-03-31 04:23:41 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-03-31 04:23:41 +0000 |
commit | 3e2f1c8bb8398368412427952ac598880d05d980 (patch) | |
tree | e750b4bb24561e514c9167395ac38eea27f1b363 /doc | |
parent | 6a3f3ffb0bef3151827876130538a5f658b67004 (diff) | |
download | tor-3e2f1c8bb8398368412427952ac598880d05d980.tar tor-3e2f1c8bb8398368412427952ac598880d05d980.tar.gz |
A start at copying the website tor-*.html and images into
the tarball. Weasel, can you help make the dependencies cause
these to get re-built appropriately?
svn:r6275
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index e9f00d005..ac9c43abd 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,7 +1,18 @@ -EXTRA_DIST = tor-spec.txt HACKING rend-spec.txt control-spec.txt dir-spec.txt socks-extensions.txt tor-doc-win32.html tor-doc-osx.html tor-doc-unix.html tor-doc-server.html tor-switchproxy.html tor-hidden-service.html stylesheet.css tor-resolve.1 version-spec.txt tor-osx-dmg-creation.txt tor-rpm-creation.txt + +EXTRA_DIST = tor-spec.txt HACKING rend-spec.txt control-spec.txt dir-spec.txt socks-extensions.txt website img tor-resolve.1 version-spec.txt tor-osx-dmg-creation.txt tor-rpm-creation.txt man_MANS = tor.1 tor-resolve.1 SUBDIRS = design-paper DIST_SUBDIRS = design-paper + +website: + mkdir $(distdir)/website + cp -p $(srcdir)/../../website/docs/tor-*.html.* \ + $(srcdir)/../../website/stylesheet.css $(distdir)/website +img: + mkdir $(distdir)/img + cp -p $(srcdir)/../../website/img/*.png \ + $(srcdir)/../../website/img/*.jpg $(distdir)/img + |