Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(54)

Side by Side Diff: Makefile

Issue 974: accept patches from mercurial SVN Base: http://rietveld.googlecode.com/svn/trunk
Patch Set: Created 3 months, 3 weeks ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Makefile to simplify some common AppEngine actions. 1 # Makefile to simplify some common AppEngine actions.
2 # Use 'make help' for a list of commands. 2 # Use 'make help' for a list of commands.
3 3
4 DEV_APPSERVER= dev_appserver.py 4 DEV_APPSERVER= ~/repos/google_appengine/dev_appserver.py
5 APPCFG= appcfg.py 5 APPCFG= appcfg.py
6 6
7 default: 7 default:
8 @echo "Use 'make help' to see available commands." 8 @echo "Use 'make help' to see available commands."
9 9
10 help: 10 help:
11 @echo "Available commands:" 11 @echo "Available commands:"
12 @sed -n '/^[a-zA-Z0-9_.]*:/s/:.*//p' <Makefile | sort 12 @sed -n '/^[a-zA-Z0-9_.]*:/s/:.*//p' <Makefile | sort
13 13
14 serve: 14 serve:
15 $(DEV_APPSERVER) . 15 $(DEV_APPSERVER) .
16 16
17 serve_remote: 17 serve_remote:
18 $(DEV_APPSERVER) --address 0.0.0.0 . 18 $(DEV_APPSERVER) --address 0.0.0.0 .
19 19
20 serve_email: 20 serve_email:
21 $(DEV_APPSERVER) --enable_sendmail . 21 $(DEV_APPSERVER) --enable_sendmail .
22 22
23 serve_remote_email: 23 serve_remote_email:
24 $(DEV_APPSERVER) --enable_sendmail --address 0.0.0.0 . 24 $(DEV_APPSERVER) --enable_sendmail --address 0.0.0.0 .
25 25
26 update: 26 update:
27 $(APPCFG) update . 27 $(APPCFG) update .
28 28
29 upload: update 29 upload: update
30 30
31 update_indexes: 31 update_indexes:
32 $(APPCFG) update_indexes . 32 $(APPCFG) update_indexes .
33 33
34 vacuum_indexes: 34 vacuum_indexes:
35 $(APPCFG) vacuum_indexes . 35 $(APPCFG) vacuum_indexes .
OLDNEW

Powered by Google App Engine
This is Rietveld r305