| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 # | 4 # |
| 5 # Makefile | 5 # Makefile |
| 6 # | 6 # |
| 7 # usage: 'make [package]' | 7 # usage: 'make [package]' |
| 8 # | 8 # |
| 9 # This makefile can by used to perform common actions such as building | 9 # This makefile can by used to perform common actions such as building |
| 10 # all ports, building a give port, running a webserver to test the ports. | 10 # all ports, building a give port, running a webserver to test the ports. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 run: | 41 run: |
| 42 ./httpd.py | 42 ./httpd.py |
| 43 | 43 |
| 44 clean: | 44 clean: |
| 45 build_tools/naclports.py --all clean | 45 build_tools/naclports.py --all clean |
| 46 | 46 |
| 47 reallyclean: clean | 47 reallyclean: clean |
| 48 rm -rf $(NACL_OUT) | 48 rm -rf $(NACL_OUT) |
| 49 | 49 |
| 50 %: | 50 %: |
| 51 » build_tools/naclports.py install ports/$* $(BUILD_FLAGS) | 51 » build_tools/naclports.py install $* $(BUILD_FLAGS) |
| 52 | 52 |
| 53 .PHONY: all run clean sdklibs sdklibs_list reallyclean | 53 .PHONY: all run clean sdklibs sdklibs_list reallyclean |
| OLD | NEW |