Chromium Code Reviews| Index: appengine/config_service/ui/Makefile |
| diff --git a/appengine/config_service/ui/Makefile b/appengine/config_service/ui/Makefile |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f8a20a7805334aa17d6d3b15595f902b84477c69 |
| --- /dev/null |
| +++ b/appengine/config_service/ui/Makefile |
| @@ -0,0 +1,14 @@ |
| +# Copyright 2017 The LUCI Authors. All rights reserved. |
| +# Use of this source code is governed by the Apache v2.0 license that can be |
| +# found in the LICENSE file. |
| + |
| +default: |
| + bower install |
| + |
| +.PHONY: run |
| +run: default |
| + polymer serve |
| + |
| +.PHONY: clean |
| +clean: |
| + rm -rf bower_components |