From 32b4e9108915b78a77fbf43e82440ca2437707d3 Mon Sep 17 00:00:00 2001 From: Martin Goik <goik@hdm-stuttgart.de> Date: Sun, 23 Nov 2014 12:50:15 +0100 Subject: [PATCH] parallized helper installation --- ws/eclipse/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ws/eclipse/Makefile diff --git a/ws/eclipse/Makefile b/ws/eclipse/Makefile new file mode 100644 index 000000000..6d949290b --- /dev/null +++ b/ws/eclipse/Makefile @@ -0,0 +1,18 @@ +PRJDIRS=Company HibIntro HtmlExtensionTaglet Jdbc Mediastore Sda1PreExam Xmlparse + +all:$(foreach subdir, $(PRJDIRS), $(subdir).p) + + +%.p:%/pom.xml + cd $*; mvn install + + +clean:$(foreach subdir, $(PRJDIRS), $(subdir).Clean) + +%.Clean: + cd $*; mvn clean; + +#remoteclean: +# ssh root@maven.mi.hdm-stuttgart.de rm -rf /var/www/Archetypes/de + + -- GitLab