Home | History | Annotate | Download | only in gonacl_appengine
      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 
      8 all:
      9 
     10 run:
     11 	dev_appserver.py app.yaml
     12 
     13 push:
     14 	appcfg.py update .
     15 
     16 .PHONY: all run push
     17