Skip to content
Snippets Groups Projects
Commit 46f1c33a authored by Jens Steidl's avatar Jens Steidl :baby_chick:
Browse files

- updated Makefile: seperate build dir, only required files are now part of the JAR

parent 30001ee4
Branches master
No related tags found
No related merge requests found
......@@ -2,9 +2,14 @@ JAR_NAME=rosetta_migration_plugin_dummy.jar
JAR_OUTPATH=.
build:
jar cf ${JAR_NAME} ${JAR_OUTPATH}
mkdir build/
cp -ra PLUGIN-INF/ build/
cp -ra plugin/ build/
cd build/; jar cf ${JAR_NAME} .; cd ..
mv build/${JAR_NAME} ${JAR_OUTPATH}/${JAR_NAME}
clean:
rm -Rf build/
rm ${JAR_OUTPATH}/${JAR_NAME}
help:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment