diff --git a/.gitignore b/.gitignore index afb1861..53c1020 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ -# premake -premake5.bat -premake5.exe +# executables +*.bat +*.exe # visual studio *.csproj @@ -12,7 +12,3 @@ bin/ # generated types generated/ - -# testing -test.sun -test.sb diff --git a/ssc/generate.bat b/ssc/generate.bat deleted file mode 100644 index 5c69e02..0000000 --- a/ssc/generate.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -java -jar grammatica.jar "sunscript.grammar" --csoutput ".\generated" --csnamespace "arookas" --csclassname "__sun" -pause diff --git a/ssc/parse.bat b/ssc/parse.bat deleted file mode 100644 index 3c65fd2..0000000 --- a/ssc/parse.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -java -jar grammatica.jar "sunscript.grammar" --parse "test.sun" -pause diff --git a/ssc/tokenize.bat b/ssc/tokenize.bat deleted file mode 100644 index a8445f6..0000000 --- a/ssc/tokenize.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -java -jar grammatica.jar "sunscript.grammar" --tokenize "test.sun" -pause