Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/rietveld/files/Makefile

Issue 6155422901731328: Run Rietveld using the AppEngine SDK (Closed)
Patch Set: Addressed comments and added caching Created June 4, 2015, 9:19 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: modules/rietveld/files/Makefile
===================================================================
deleted file mode 100644
--- a/modules/rietveld/files/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-RIETVELDREV=40320f76005c
-
-default:
- @echo "Run 'make all' to fetch required sources to run this example."
-
-all: static templates codereview gae2django dev.db
- @echo "Run './manage.py runserver' to run Rietveld."
-
-clean: clean_local clean_external
-
-clean_external: clean_rietveld
-
-clean_rietveld:
- @if [ -x codereview ]; then unlink codereview; fi;
- @if [ -x static ]; then unlink static; fi;
- @if [ -x templates ]; then unlink templates; fi;
- @if [ -x upload.py ]; then unlink upload.py; fi;
- @rm -rf rietveld.hg
-
-clean_local:
- @if [ -x gae2django ]; then unlink gae2django; fi;
- @rm -f dev.db
-
-gae2django:
- ln -s ../../gae2django .
-
-dev.db:
- ./manage.py syncdb --noinput
-
-rietveld.hg:
- hg clone -u $(RIETVELDREV) https://hg.adblockplus.org/rietveld rietveld.hg
-
-codereview: rietveld.hg
- ln -s rietveld.hg/codereview .
- patch -p1 < patches/download.link.diff
-
-static: rietveld.hg upload.py
- ln -s rietveld.hg/static .
-
-upload.py: rietveld.hg
- ln -s rietveld.hg/upload.py .
- patch -p0 < patches/upload.diff
-
-templates: rietveld.hg
- ln -s rietveld.hg/templates .
- patch -p1 < patches/account-login-links.diff

Powered by Google App Engine
This is Rietveld