mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
2f6ec3d63e
svn:r9424
32 lines
840 B
Makefile
32 lines
840 B
Makefile
|
|
EXTRA_DIST = website img HACKING \
|
|
tor-resolve.1 \
|
|
tor-osx-dmg-creation.txt tor-rpm-creation.txt \
|
|
tor-win32-mingw-creation.txt
|
|
|
|
man_MANS = tor.1 tor-resolve.1
|
|
|
|
SUBDIRS = design-paper spec
|
|
|
|
DIST_SUBDIRS = design-paper spec
|
|
|
|
website: ../../website/docs/
|
|
rm -rf website
|
|
mkdir 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
|
|
# if test -d $(srcdir)/../../website/img; then \
|
|
# cp $(srcdir)/../../website/img/*.png \
|
|
# $(srcdir)/../../website/img/*.jpg img; \
|
|
# fi
|
|
|
|
.PHONY: website img
|