Skip to content

Commit

Permalink
Release CLI in v0.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-michael committed Apr 19, 2016
1 parent 56db044 commit 7d435d4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,22 @@ A Java compiler for a worse version of Java.

To install, download and unzip the most recent [release](https://github.com/aj-michael/minijavac/releases). Add `export PATH="$PATH:/path/to/minijavac-x.y.z/bin"` to your bashrc or set the equivalent Windows environment variable.

To cut a new release, use `gradle distZip` or `gradle distTar`.
To build a new release, use `gradle distZip` or `gradle distTar`.

## Running instructions

Minijavac has three commands: `lex`, `parse` and `typecheck`. Each takes exactly one file and writes to standard out.

$ minijavac
usage: minijavac <command> [<args>]

The most commonly used minijavac commands are:
lex Lexical analysis of Minijava program
parse Parse Minijava program
typecheck Typecheck Minijava program

See 'minijavac help <command>' for more information on a specific command.


## Development build instructions

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'edu.rosehulman.minijavac'
version '0.0.3'
version '0.0.4'

apply plugin: 'java'
apply plugin: 'application'
Expand Down

0 comments on commit 7d435d4

Please sign in to comment.