37e9e9935c
Prefer not to have edgy references to child sexual assault in our tools. Consider that victims of such violence may well grow up to become ROM hackers just as often as the rest of us. Let's not be rude to them!
8 lines
218 B
Bash
Executable file
8 lines
218 B
Bash
Executable file
#!/bin/sh
|
|
set -ex
|
|
rm -rf ./build/*
|
|
javac -sourcepath src -d ./build src/TileMangler.java
|
|
cp -R src/tm/icons/ build/tm/
|
|
cp src/tm/splash.gif build/tm/splash.gif
|
|
jar cvfm TileMangler.jar META-INF/MANIFEST.MF -C build/ .
|