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

Side by Side Diff: dart/language/grammar/Makefile

Issue 10917035: Remove language directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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 | « dart/language/grammar/Dart.g ('k') | dart/language/grammar/PRESUBMIT.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file.
4
5 OUTPUT := out/dart.jar
6
7 all: $(OUTPUT)
8
9 out/dart.jar: Dart.g TestGrammar.java dart.mf Makefile
10 @rm -rf out
11 @mkdir -p out/classes
12 @cp -p antlrworks.jar out
13 java -cp antlrworks.jar org.antlr.Tool -o out/gensrc Dart.g
14 javac -cp antlrworks.jar out/gensrc/*.java TestGrammar.java -d out/class es
15 jar cfm $@ dart.mf -C out/classes com
OLDNEW
« no previous file with comments | « dart/language/grammar/Dart.g ('k') | dart/language/grammar/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698