| OLD | NEW |
| 1 # Copyright 2015 The Chromium OS Authors. All rights reserved. | 1 # Copyright 2015 The Chromium 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 ifndef PNACL_TARGET | 5 ifndef PNACL_TARGET |
| 6 $(error PNACL_TARGET must be set) | 6 $(error PNACL_TARGET must be set) |
| 7 endif | 7 endif |
| 8 | 8 |
| 9 ifndef PACKAGE_DIR | 9 ifndef PACKAGE_DIR |
| 10 $(error PACKAGE_DIR must be set) | 10 $(error PACKAGE_DIR must be set) |
| 11 endif | 11 endif |
| (...skipping 10 matching lines...) Expand all Loading... |
| 22 cp pnacl/$(PNACL_TARGET)/module.nmf $(PACKAGE_DIR)/ | 22 cp pnacl/$(PNACL_TARGET)/module.nmf $(PACKAGE_DIR)/ |
| 23 cp pnacl/$(PNACL_TARGET)/module.pexe $(PACKAGE_DIR)/ | 23 cp pnacl/$(PNACL_TARGET)/module.pexe $(PACKAGE_DIR)/ |
| 24 mkdir -p $(PACKAGE_DIR)/third-party | 24 mkdir -p $(PACKAGE_DIR)/third-party |
| 25 cp vulcanized-polymer/* $(PACKAGE_DIR)/third-party/ | 25 cp vulcanized-polymer/* $(PACKAGE_DIR)/third-party/ |
| 26 zip -q -r $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR)/ | 26 zip -q -r $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR)/ |
| 27 mv $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR).zip | 27 mv $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR).zip |
| 28 | 28 |
| 29 .PHONY: clean | 29 .PHONY: clean |
| 30 clean: | 30 clean: |
| 31 rm -rf $(PACKAGE_DIR) $(PACKAGE_DIR).zip | 31 rm -rf $(PACKAGE_DIR) $(PACKAGE_DIR).zip |
| OLD | NEW |