added a makefile file
This commit is contained in:
parent
63a8aa88d0
commit
00a72c289c
3 changed files with 10 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
*.class
|
||||
*.jar
|
|
@ -42,7 +42,7 @@ public class Universe {
|
|||
}
|
||||
|
||||
public boolean isSolved() {
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public void print() {
|
||||
|
|
7
makefile
Normal file
7
makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
build:
|
||||
javac --source 1.8 --target 1.8 AppLaser.java
|
||||
jar cfe AppLaser.jar AppLaser *.class
|
||||
|
||||
run:
|
||||
javac --source 1.8 --target 1.8 AppLaser.java
|
||||
java AppLaser
|
Loading…
Add table
Add a link
Reference in a new issue