aboutsummaryrefslogtreecommitdiff
path: root/doc/Makefile.am
blob: 60afcb7d5216cbfb60cbdf24f3f5d2a46ce995ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
EXTRA_DIST = website img HACKING                             \
             tor-resolve.1 tor-gencert.1                     \
             tor-osx-dmg-creation.txt tor-rpm-creation.txt   \
             tor-win32-mingw-creation.txt

man_MANS = tor.1 tor-resolve.1 tor-gencert.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