Mentions légales du service

Skip to content
Snippets Groups Projects
Commit eaffb0ba authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- updated clean target

parent 04b3d9c1
No related branches found
No related tags found
No related merge requests found
...@@ -91,9 +91,8 @@ ...@@ -91,9 +91,8 @@
<target name="lint" depends="init"> <target name="lint" depends="init">
<echo message="Setting property..."/> <echo message="Setting property..."/>
<!-- values: cast,deprecation,divzero,empty,unchecked[3],fallthrough,path[5],serial,finally,overrides,all,none --> <!-- values: cast,deprecation,divzero,empty,unchecked[3],fallthrough,path[5],serial,finally,overrides,all,none -->
<property name="javacargs" value="-Xlint:path" /> <!--property name="javacargs" value="-Xlint:cast" /-->
<!--property name="javacargs" value="-Xlint:deprecation -Xlint:fallthrough -Xlint:serial -Xlint:finally" /--> <property name="javacargs" value="-Xlint:all" />
<!--property name="javacargs" value="-Xlint:all" /-->
<antcall target="compileall"/> <antcall target="compileall"/>
</target> </target>
...@@ -386,8 +385,8 @@ ...@@ -386,8 +385,8 @@
<target name="clean"> <target name="clean">
<echo message="Cleaning..."/> <echo message="Cleaning..."/>
<antcall target="cleantest"/> <antcall target="cleantest"/>
<!-- This instruction does not seem to work --> <ant dir="plugins/neon" target="clean" />
<delete dir="plugins/neon/neonalign" /> <ant dir="plugins/webcontent" target="clean" />
<delete> <delete>
<fileset dir="classes" includes="**/*.class"/> <fileset dir="classes" includes="**/*.class"/>
<fileset dir="examples" includes="**/*.class"/> <fileset dir="examples" includes="**/*.class"/>
......
...@@ -122,10 +122,10 @@ ...@@ -122,10 +122,10 @@
<fileset dir="neonalign" includes="**/*.*"/> <fileset dir="neonalign" includes="**/*.*"/>
</jar> </jar>
<antcall target="cleanup"/> <antcall target="clean"/>
</target> </target>
<target name="cleanup"> <target name="clean">
<echo message="Cleaning..."/> <echo message="Cleaning..."/>
<!-- this does not seems to work --> <!-- this does not seems to work -->
<delete dir="neonalign"/> <delete dir="neonalign"/>
......
...@@ -81,5 +81,9 @@ ...@@ -81,5 +81,9 @@
<fileset dir="webc" includes="**/*.*"/> <fileset dir="webc" includes="**/*.*"/>
</jar> </jar>
</target> </target>
<target name="clean" depends="init">
<delete dir="webc" />
</target>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment