<?xml version="1.0" encoding="UTF-8" standalone="no"?>

	<!--this file was created by Eclipse Runnable JAR Export Wizard-->
	<!--ANT 1.7 is required                                        -->
	<project default="compile" name="TPBESMA">
		<target name="clean">
			<delete dir="H:/workspace/TPBesma/bin" />
		</target>
		<target name="compile" depends="clean">
			<mkdir dir="H:/workspace/TPBesma/bin" />
			<echo message="Compilation en cours..." />
			<javac srcdir="src" destdir="H:/workspace/TPBesma/bin" />
		</target>
		<target name="run" depends="compile">
			<java classpath="bin" classname="HelloWorld" />
		</target>
		<target name="create_run_jar">
			<jar destfile="C:/Users/bzi/Desktop/Bureau 2014/Besma.jar" filesetmanifest="mergewithoutmain">
				<manifest>
					<attribute name="Main-Class" value="HelloWorld" />
					<attribute name="Class-Path" value="." />
				</manifest>
				<fileset dir="H:/workspace/TPBesma/bin" />
			</jar>
		</target>
	</project>
