Skip to content
Snippets Groups Projects
Commit b0a502df authored by Roger Dingledine's avatar Roger Dingledine
Browse files

hack together a shell blob so 'make dist' can build even when

the website isn't there.


svn:r6288
parent 1e04b70d
Branches
Tags
No related merge requests found
......@@ -8,15 +8,21 @@ SUBDIRS = design-paper
DIST_SUBDIRS = design-paper
website: ../../website/docs/
cd $(srcdir)/../../website && $(MAKE)
rm -rf website
mkdir website
cp $(srcdir)/../../website/docs/tor-*.html.* \
$(srcdir)/../../website/stylesheet.css website
if test -d $(srcdir)/../../website ; then \
cd $(srcdir)/../../website && $(MAKE); \
fi
if test -d $(srcdir)/../../website ; then \
cp $(srcdir)/../../website/docs/tor-*.html.* \
$(srcdir)/../../website/stylesheet.css website; \
fi
img: ../../website/img/
rm -rf img
mkdir img
cp $(srcdir)/../../website/img/*.png \
$(srcdir)/../../website/img/*.jpg img
if test -d $(srcdir)/../../website/img; then \
cp $(srcdir)/../../website/img/*.png \
$(srcdir)/../../website/img/*.jpg img; \
fi
.PHONY: website img
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment