webwml/Makefile

56 lines
1.5 KiB
Makefile
Raw Normal View History

# Directions for building the website:
#
# 1. Clone the Tor git repository and make TORGIT point to it:
#
2014-12-10 03:49:54 +00:00
# git clone https://git.torproject.org/tor/ tor.git
#
# 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.
2017-10-25 12:34:08 +00:00
export STABLETAG=tor-0.3.1.8
export DEVTAG=tor-0.3.2.4-alpha
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
include $(WMLBASE)/Makefile.local
include $(WMLBASE)/Makefile.common
2014-04-24 18:46:31 +00:00
all: $(SUBDIRS)
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=..
download:
2014-04-24 18:46:31 +00:00
$(MAKE) -C "$@" WMLBASE=..
getinvolved:
2014-04-24 18:46:31 +00:00
$(MAKE) -C "$@" WMLBASE=..
donate:
2014-04-24 18:46:31 +00:00
$(MAKE) -C "$@" WMLBASE=..
docs/torbutton:
$(MAKE) -C "$@" WMLBASE=../..
mirrors:
./update-mirrors.pl
translations:
./po2wml.sh
qrcode:
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"
# XXX: this also depends on all subs' wmlfiles. How to fix?
#translation-status.html.en: $(LANGS) $(WMIFILES) $(WMLFILES)
2014-04-24 18:46:31 +00:00
.PHONY: docs eff projects press about download getinvolved donate docs/torbutton