You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libiec61850/tools/model_generator/build-dyn-code-gen.sh

13 lines
207 B
Bash

#!/bin/sh
mkdir build
find src/ -name "*.java" > listFile.tmp
javac -target 1.6 -source 1.6 -d build @listFile.tmp
jar cfm gendyncode.jar manifest-dyncCode.mf -C build/ com/
rm listFile.tmp
rm -r build