Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
Diffstat (limited to 'native')
-rw-r--r--native/org.eclipse.cdt.native.serial/pom.xml94
1 files changed, 0 insertions, 94 deletions
diff --git a/native/org.eclipse.cdt.native.serial/pom.xml b/native/org.eclipse.cdt.native.serial/pom.xml
index d9b798e43b0..07dd11f5472 100644
--- a/native/org.eclipse.cdt.native.serial/pom.xml
+++ b/native/org.eclipse.cdt.native.serial/pom.xml
@@ -29,53 +29,6 @@
<profiles>
<profile>
- <id>build-native.linux.x86</id>
- <activation>
- <property>
- <name>native</name>
- <value>linux.x86</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>natives</id>
- <phase>process-resources</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./jni">
- <arg value="LIBS=../os/linux/x86/libserial.so" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean-natives</id>
- <phase>clean</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./jni">
- <arg value="LIBS=../os/linux/x86/libserial.so" />
- <arg value="clean" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>build-native.linux.x86_64</id>
<activation>
<property>
@@ -123,53 +76,6 @@
</build>
</profile>
<profile>
- <id>build-native.linux.ppc64</id>
- <activation>
- <property>
- <name>native</name>
- <value>linux.ppc64</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>natives</id>
- <phase>process-resources</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./jni">
- <arg value="LIBS=../os/linux/ppc64/libserial.so" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean-natives</id>
- <phase>clean</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./jni">
- <arg value="LIBS=../os/linux/ppc64/libserial.so" />
- <arg value="clean" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>build-native.linux.ppc64le</id>
<activation>
<property>

Back to the top