diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-03-04 22:53:58 -0700 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-03-04 22:53:58 -0700 |
commit | 12f1e24766b061e00663e1934b76f64cd79c8fea (patch) | |
tree | 7d7a5343b2a58344770191a954bb2a6e5e05ccc2 /Makefile | |
parent | a23fdfa59b8fa2eaf58fbf6d677caf0b6cdf5a31 (diff) |
Minimal test suite---failing tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..06b1ced --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +CC=javac + +FILES = Typecheck.java +OUT_EXE = Typecheck.class + +all: $(OUT_EXE) + +$(OUT_EXE): $(FILES) + $(CC) -g $(FILES) + + +run: + $(SHELL) run_tests.sh + +clean: + $(RM) *.class *.tar.gz + +# package: +# tar -czvf dunaisky-benjamin-hw1.tar.gz README.txt Makefile Bundle.java Descend.java Lex.java manifest.scm Parse.java Read.java run_tests.sh tests/* Token.java hw1-grammar.pdf |