invoke 'make' from maven

This commit is contained in:
David Renshaw 2020-05-13 17:45:24 -04:00
parent 7da9686191
commit 703449e966

View file

@ -59,6 +59,22 @@
<artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version> <version>3.0.0</version>
<executions> <executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<exec executable="make" failonerror="true">
<arg value="--directory=.."/>
</exec>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution> <execution>
<id>generate-test-sources</id> <id>generate-test-sources</id>
<phase>generate-test-sources</phase> <phase>generate-test-sources</phase>