| OLD | NEW |
| 1 # Copyright (c) 2015, the Dart Team. All rights reserved. Use of this | 1 # Copyright (c) 2015, the Dart Team. All rights reserved. Use of this |
| 2 # source code is governed by a BSD-style license that can be found in | 2 # source code is governed by a BSD-style license that can be found in |
| 3 # the LICENSE file. | 3 # the LICENSE file. |
| 4 | 4 |
| 5 # TODO(eernst) implement: Rewrite this to a Dart script, make is not available | 5 # TODO(eernst) implement: Rewrite this to a Dart script, make is not available |
| 6 # on all platforms. | 6 # on all platforms. |
| 7 | 7 |
| 8 RTOOLS=../reflectable/tool | 8 RTOOLS=../reflectable/tool |
| 9 TTOOLS=../test_reflectable/tool | 9 TTOOLS=../test_reflectable/tool |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 @./makein Testing $(RTOOLS) test | 42 @./makein Testing $(RTOOLS) test |
| 43 @./makein Testing $(TTOOLS) test | 43 @./makein Testing $(TTOOLS) test |
| 44 | 44 |
| 45 bot_test: | 45 bot_test: |
| 46 @echo '------------------- bottest' | 46 @echo '------------------- bottest' |
| 47 ./bottest | 47 ./bottest |
| 48 | 48 |
| 49 full_test: test bot_test | 49 full_test: test bot_test |
| 50 | 50 |
| 51 .PHONY: all_except_bottest all c b t ft check build test bot_test full_test | 51 .PHONY: all_except_bottest all c b t ft check build test bot_test full_test |
| 52 .PHONY: | |
| OLD | NEW |