Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 97587eb0d705a8e49a316a20decbe02539a61559 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<!--
     Copyright (c) 2019 Red Hat and others.

     This program and the accompanying materials
     are made available under the terms of the Eclipse Public License 2.0
     which accompanies this distribution, and is available at
     https://www.eclipse.org/legal/epl-2.0/

     SPDX-License-Identifier: EPL-2.0

     Contributors:
         Red Hat - initial API and implementation
 -->

<project name="Build xinclude.jar" default="build" basedir=".">
	<target name="build" description="Cleans, builds and refreshes the impacted resources" depends="clean, lib/xinclude.jar"/>

	<target name="lib/xinclude.jar" description="Creates the lib/xinclude.jar">
		<mkdir dir="${basedir}/lib"/>
		<jar destfile="${basedir}/lib/xinclude.jar" basedir="${basedir}/bin_xinclude"/>
	</target>

	<target name="clean">
		<delete file="${basedir}/lib/xinclude.jar"/>
	</target>
</project>

Back to the top