waxeye-org / waxeye

Waxeye is a parser generator based on parsing expression grammars (PEGs). It supports C, Java, JavaScript, Python, Racket, and Ruby.
https://waxeye-org.github.io/waxeye/index.html
Other
235 stars 38 forks source link

Simplify build instructions #54

Closed glebm closed 7 years ago

glebm commented 7 years ago
  1. Do not require the user to copy Waxeye to the racket directory.
  2. Make the build scripts runnable from any working directory. On Windows, you can now simply double-click build/exe.bat.
  3. Use racket instead of mzscheme.
  4. Use #!/bin/bash because POSIX shell is painful. Bash can be trivially installed on any unix distribution (and symlinked to #!/bin/bash if the default install location is different).
glebm commented 7 years ago

Fixed!

orlandohill commented 7 years ago

Great, thanks!