Albion Online fishing bot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
src_dir:='src/xyz/unbewohnte/albionFisher' |
|
release_dir:='release' |
|
|
|
all: |
|
javac -Werror $(src_dir)/*.java && cp $(src_dir)/*.class . && rm $(src_dir)/*.class |
|
mkdir -p $(release_dir) |
|
mv *.class $(release_dir) |
|
|
|
# jar: all |
|
# jar cvfm fisher.jar Manifest.txt gui.class fisher.class bobber.png
|