first commit

This commit is contained in:
Michael Rodin 2025-06-06 19:22:24 +02:00
commit 56d08a6a6c
9 changed files with 214 additions and 0 deletions

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
build: $(shell find src -type f) #src/de/sus/*/*.java src/de/sus/Main.java
mkdir build 2>/dev/null || (rm -r build && mkdir build)
cd src && javac -d ../build de/sus/Main.java
package: build
cd build && jar cfm ../Staedte-und-Strassen.jar ../manifest.txt *