diff --git a/P/Makefile b/P/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..b431048920fd7c8f6dddf5a80532096a61026350 --- /dev/null +++ b/P/Makefile @@ -0,0 +1,21 @@ +SHELL = /bin/bash + +DOCMODULES = Sd1 Sda1 Sda2 + +PROJECTROOTS=$(shell for module in ${DOCMODULES}; do \ + find $$module -name pom.xml| sed -e s/\\/pom.xml//g;\ + done;) + +install: + for subdir in ${PROJECTROOTS}; do \ + pushd $$subdir; \ + rm -f target/project.zip; \ + zip -r target/project.zip . --exclude project.zip target/\*; \ + popd; \ + done; + tar c- Sd1 Sda1 Sda2|tar -x -C ../Doc/target/navi/de.hdm_stuttgart.mi.lectures/P + + +clean: + mvn -t8 clean; +#end