first commit
This commit is contained in:
commit
56d08a6a6c
9 changed files with 214 additions and 0 deletions
7
Makefile
Normal file
7
Makefile
Normal 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 *
|
Reference in a new issue