Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Side by Side Diff: Makefile

Issue 138913004: Build system for statically-linked Python. (Closed) Base URL: https://naclports.googlecode.com/svn/trunk/src
Patch Set: Final update with merge against current naclports.py Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build_tools/common.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | build_tools/common.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698