-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
40 lines (37 loc) · 848 Bytes
/
makefile
File metadata and controls
40 lines (37 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Makefile for compiling and running the myrpal Java program
all:
javac *.java
# This target compiles all Java files in the current directory.
run:
java myrpal input.txt
# This Makefile compiles all Java files in the current directory and runs the myrpal program with input.txt.
clean:
del /Q *.class
# Test cases
# Each test case runs a specific test file in the Test directory
test1:
java myrpal ./Test/test_1
test2:
java myrpal ./Test/test_2
test3:
java myrpal ./Test/test_3
test4:
java myrpal ./Test/test_4
test5:
java myrpal ./Test/test_5
test6:
java myrpal ./Test/test_6
test7:
java myrpal ./Test/test_7
test8:
java myrpal ./Test/test_8
test9:
java myrpal ./Test/test_9
test10:
java myrpal ./Test/test_10
test11:
java myrpal ./Test/test_11
test12:
java myrpal ./Test/test_12
test13:
java myrpal ./Test/test_13