This repository has been archived on 2025-06-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
prog2-catan/Makefile
2025-06-06 19:22:24 +02:00

7 lines
No EOL
261 B
Makefile

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 *