1# Copyright (c) 2013 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# The commands in this makefile require that the appengine SDK 6# directory is in your PATH. See README for more details. 7 8all: 9 10run: 11 dev_appserver.py app.yaml 12 13push: 14 appcfg.py update . 15 16.PHONY: all run push 17