added a makefile file

This commit is contained in:
Ninja-Jambon 2024-02-28 10:23:21 +01:00
parent 63a8aa88d0
commit 00a72c289c
3 changed files with 10 additions and 2 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
*.class *.class
*.jar

View file

@ -42,7 +42,7 @@ public class Universe {
} }
public boolean isSolved() { public boolean isSolved() {
return true;
} }
public void print() { public void print() {

7
makefile Normal file
View 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