Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(79)

Side by Side Diff: src/pkg/Makefile

Issue 162053: A first stab at porting the XCB X11 protocol bindings to go.
Patch Set: code review 162053: A first stab at porting the XCB X11 protocol bindings to go. Created 15 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/pkg/xgb/Makefile » ('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 2009 The Go Authors. All rights reserved. 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 # After editing the DIRS= list or adding imports to any Go files 5 # After editing the DIRS= list or adding imports to any Go files
6 # in any of those directories, run: 6 # in any of those directories, run:
7 # 7 #
8 # ./deps.bash 8 # ./deps.bash
9 # 9 #
10 # to rebuild the dependency information in Make.deps. 10 # to rebuild the dependency information in Make.deps.
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 syscall\ 91 syscall\
92 tabwriter\ 92 tabwriter\
93 template\ 93 template\
94 testing\ 94 testing\
95 testing/iotest\ 95 testing/iotest\
96 testing/quick\ 96 testing/quick\
97 testing/script\ 97 testing/script\
98 time\ 98 time\
99 unicode\ 99 unicode\
100 utf8\ 100 utf8\
101 xgb\
101 xml\ 102 xml\
102 103
103 NOTEST=\ 104 NOTEST=\
104 debug/proc\ 105 debug/proc\
105 go/ast\ 106 go/ast\
106 go/doc\ 107 go/doc\
107 go/token\ 108 go/token\
108 hash\ 109 hash\
109 image\ 110 image\
110 malloc\ 111 malloc\
111 rand\ 112 rand\
112 runtime\ 113 runtime\
113 syscall\ 114 syscall\
114 testing/iotest\ 115 testing/iotest\
116 xgb\
115 117
116 TEST=\ 118 TEST=\
117 $(filter-out $(NOTEST),$(DIRS)) 119 $(filter-out $(NOTEST),$(DIRS))
118 120
119 clean.dirs: $(addsuffix .clean, $(DIRS)) 121 clean.dirs: $(addsuffix .clean, $(DIRS))
120 install.dirs: $(addsuffix .install, $(DIRS)) 122 install.dirs: $(addsuffix .install, $(DIRS))
121 nuke.dirs: $(addsuffix .nuke, $(DIRS)) 123 nuke.dirs: $(addsuffix .nuke, $(DIRS))
122 test.dirs: $(addsuffix .test, $(TEST)) 124 test.dirs: $(addsuffix .test, $(TEST))
123 125
124 %.clean: 126 %.clean:
(...skipping 14 matching lines...) Expand all
139 141
140 test: test.dirs 142 test: test.dirs
141 143
142 nuke: nuke.dirs 144 nuke: nuke.dirs
143 rm -rf "$(GOROOT)"/pkg/* 145 rm -rf "$(GOROOT)"/pkg/*
144 146
145 deps: 147 deps:
146 ./deps.bash 148 ./deps.bash
147 149
148 -include Make.deps 150 -include Make.deps
OLDNEW
« no previous file with comments | « no previous file | src/pkg/xgb/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b