2010-07-09 01:55:22 +00:00
|
|
|
# Directions for building the website:
|
|
|
|
#
|
2010-10-10 01:19:11 +00:00
|
|
|
# 1. Clone the Tor git repository and make TORGIT point to it:
|
2010-07-09 01:55:22 +00:00
|
|
|
#
|
2014-12-10 03:49:54 +00:00
|
|
|
# git clone https://git.torproject.org/tor/ tor.git
|
2010-07-09 01:55:22 +00:00
|
|
|
#
|
2010-10-10 01:19:11 +00:00
|
|
|
# Note that you will need to point to the actual .git directory.
|
|
|
|
# 2. Edit include/versions.wmi or others if you like
|
|
|
|
# 3. Update STABLETAG and DEVTAG below if there is a new git tag
|
|
|
|
# 4. make
|
2014-10-19 23:30:14 +00:00
|
|
|
# 5. Do a git commit for your changes
|
|
|
|
|
|
|
|
# Then either 6a) git push to staging or master, or 6b) push your git
|
|
|
|
# branch to your personal webwml repository, open a trac ticket in the
|
|
|
|
# website component, and set it to needs_review.
|
2010-07-09 01:55:22 +00:00
|
|
|
|
2017-10-25 12:34:08 +00:00
|
|
|
export STABLETAG=tor-0.3.1.8
|
2017-11-08 21:39:44 +00:00
|
|
|
export DEVTAG=tor-0.3.2.4-alpha
|
2015-10-21 19:28:48 +00:00
|
|
|
|
2010-08-16 18:18:15 +00:00
|
|
|
WMLBASE=.
|
2014-04-24 18:46:31 +00:00
|
|
|
SUBDIRS=docs eff projects press about download getinvolved donate docs/torbutton
|
2012-02-17 16:50:37 +00:00
|
|
|
include $(WMLBASE)/Makefile.local
|
2010-07-09 01:55:22 +00:00
|
|
|
include $(WMLBASE)/Makefile.common
|
|
|
|
|
2014-04-24 18:46:31 +00:00
|
|
|
all: $(SUBDIRS)
|
2010-07-09 01:55:22 +00:00
|
|
|
docs:
|
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
|
|
|
eff:
|
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
|
|
|
projects:
|
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
|
|
|
press:
|
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
|
|
|
about:
|
2014-04-24 18:46:31 +00:00
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
2010-07-09 01:55:22 +00:00
|
|
|
download:
|
2014-04-24 18:46:31 +00:00
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
2010-07-09 01:55:22 +00:00
|
|
|
getinvolved:
|
2014-04-24 18:46:31 +00:00
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
2010-07-09 01:55:22 +00:00
|
|
|
donate:
|
2014-04-24 18:46:31 +00:00
|
|
|
$(MAKE) -C "$@" WMLBASE=..
|
|
|
|
docs/torbutton:
|
|
|
|
$(MAKE) -C "$@" WMLBASE=../..
|
2010-07-09 01:55:22 +00:00
|
|
|
mirrors:
|
|
|
|
./update-mirrors.pl
|
|
|
|
translations:
|
|
|
|
./po2wml.sh
|
|
|
|
qrcode:
|
2010-10-11 19:03:31 +00:00
|
|
|
qrencode -o $(IMGROOT)/android/orbot-qr-code-latest.png \
|
2010-09-20 17:38:17 +00:00
|
|
|
"https://www.torproject.org/dist/android/alpha-orbot-latest.apk"
|
2010-07-09 01:55:22 +00:00
|
|
|
|
|
|
|
# XXX: this also depends on all subs' wmlfiles. How to fix?
|
2010-09-20 20:08:24 +00:00
|
|
|
#translation-status.html.en: $(LANGS) $(WMIFILES) $(WMLFILES)
|
2010-07-09 01:55:22 +00:00
|
|
|
|
2014-04-24 18:46:31 +00:00
|
|
|
.PHONY: docs eff projects press about download getinvolved donate docs/torbutton
|