Update of /cvsroot/jsmooth/jsmooth
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30988
Modified Files:
build.xml
Log Message:
fix build cleaning
Index: build.xml
===================================================================
RCS file: /cvsroot/jsmooth/jsmooth/build.xml,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** build.xml 19 May 2007 15:27:37 -0000 1.42
--- build.xml 12 Oct 2008 19:32:44 -0000 1.43
***************
*** 4,14 ****
<!-- see the README.txt file for additional information -->
<!-- DO NOT SKIP THIS PART! REALLY! IT WON'T WORK OTHERWISE -->
! <property name="JDKDIR" value="c:\Program Files\Java\jdk1.5.0_11"/>
<property name="RM" value="CMD /C DEL"/>
<!-- Values below should be standard, but check it anyway -->
<!-- Also make sure that the bin folder of MINGW is in your PATH -->
! <property name="mingw-make" value="mingw32-make.exe"/>
! <property name="mingw-strip" value="strip.exe"/>
<!-- the autodownload skeleton needs the fltk lib to be available -->
--- 4,14 ----
<!-- see the README.txt file for additional information -->
<!-- DO NOT SKIP THIS PART! REALLY! IT WON'T WORK OTHERWISE -->
! <property name="JDKDIR" value="c:/Program Files/Java/jdk1.5.0_16"/>
<property name="RM" value="CMD /C DEL"/>
<!-- Values below should be standard, but check it anyway -->
<!-- Also make sure that the bin folder of MINGW is in your PATH -->
! <property name="mingw-make" value="c:/MinGW/bin/mingw32-make.exe"/>
! <property name="mingw-strip" value="c:/MinGW/bin/strip.exe"/>
<!-- the autodownload skeleton needs the fltk lib to be available -->
***************
*** 25,30 ****
<!-- What's below is optional (needed only if you build a dist) -->
! <property name="FOP" value="c:/Programs/fop-0.93\fop.bat"/>
! <property name="DOCBOOKBASE" value="c:\programs\docbook-xsl-1.72.0"/>
<!-- set here the properties specific to the release -->
--- 25,30 ----
<!-- What's below is optional (needed only if you build a dist) -->
! <property name="FOP" value="c:/opt/fop-0.95\fop.bat"/>
! <property name="DOCBOOKBASE" value="C:\opt\docbook-xsl-1.74.0"/>
<!-- set here the properties specific to the release -->
***************
*** 342,345 ****
--- 342,346 ----
<ant dir="skeletons/simplewrap/samplejar" />
<ant dir="skeletons/consolewrapper/samplejar" />
+ <ant antfile="build.xml" dir="skeletons/winservice/sample" target="dist"/>
<antcall target="compileskel">
***************
*** 354,357 ****
--- 355,368 ----
</antcall>
<antcall target="compileskel">
+ <param name="skelname" value="util-gui"/>
+ <param name="skelflags" value="${skelflags}"/>
+ <param name="target" value="all"/>
+ </antcall>
+ <antcall target="compileskel">
+ <param name="skelname" value="jnismooth"/>
+ <param name="skelflags" value="${skelflags}"/>
+ <param name="target" value="all"/>
+ </antcall>
+ <antcall target="compileskel">
<param name="skelname" value="commonjava"/>
<param name="skelflags" value="${skelflags}"/>
***************
*** 388,391 ****
--- 399,407 ----
<ant antfile="build.xml" dir="sample" target="clean"/>
+ <ant antfile="build.xml" dir="skeletons/consolewrapper/samplejar" target="clean"/>
+ <ant antfile="build.xml" dir="skeletons/jnismooth" target="clean"/>
+ <ant antfile="build.xml" dir="skeletons/samplejar" target="clean"/>
+ <ant antfile="build.xml" dir="skeletons/simplewrap/samplejar" target="clean"/>
+ <ant antfile="build.xml" dir="skeletons/winservice/sample" target="clean"/>
<antcall target="compileskel">
***************
*** 400,403 ****
--- 416,429 ----
</antcall>
<antcall target="compileskel">
+ <param name="skelname" value="util-gui"/>
+ <param name="skelflags" value="${skelflags}"/>
+ <param name="target" value="clean"/>
+ </antcall>
+ <antcall target="compileskel">
+ <param name="skelname" value="jnismooth"/>
+ <param name="skelflags" value="${skelflags}"/>
+ <param name="target" value="clean"/>
+ </antcall>
+ <antcall target="compileskel">
<param name="skelname" value="commonjava"/>
<param name="skelflags" value="${skelflags}"/>
|