aboutsummaryrefslogtreecommitdiff
path: root/tools/JackCompiler.bat
diff options
context:
space:
mode:
authorYuchen Pei <me@ypei.me>2018-01-20 15:41:49 +0100
committerYuchen Pei <me@ypei.me>2018-01-20 15:41:49 +0100
commitd3a0cc3a8ba6dfeb64d3faeffdeb6845b60e5840 (patch)
treed58df9ec2480e2a9ec6240f9c797f83d1a0b1056 /tools/JackCompiler.bat
parent3571f998b28fbc8d9250ba04c983935f10a16c15 (diff)
rearranged the dir for github
- removed tools and pdfs - rearranged the projects dirs - added md files - other minor changes
Diffstat (limited to 'tools/JackCompiler.bat')
-rw-r--r--tools/JackCompiler.bat26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/JackCompiler.bat b/tools/JackCompiler.bat
deleted file mode 100644
index 9399b94..0000000
--- a/tools/JackCompiler.bat
+++ /dev/null
@@ -1,26 +0,0 @@
-@echo off
-
-rem $Id: JackCompiler.bat,v 1.2 2014/05/10 00:52:43 marka Exp $
-rem mark.armbrust@pobox.com
-
-setlocal
-if not "%2"=="" goto :USAGE
-if "%~1"=="/?" (
-:USAGE
- echo Usage:
- echo JackCompiler Compiles all .jack files in the current
- echo working directory.
- echo JackCompiler DIRECTORY Compiles all .jack files in DIRECTORY.
- echo JackCompiler FILE.jack Compiles FILE.jack to FILE.vm.
- exit -b
-)
-if not "%~1"=="" (
- set "_arg1=%~f1"
-) else (
- set "_arg1=%CD%"
-)
-pushd "%~dp0"
-echo Compiling "%_arg1%"
-java -classpath "%CLASSPATH%;bin/classes;bin/lib/Hack.jar;bin/lib/Compilers.jar" ^
- Hack.Compiler.JackCompiler "%_arg1%"
-popd