adammurdoch    02/04/20 00:33:49

  Modified:    src/stylesheets build.xsl
  Log:
  Add a dist-lite target to the projects.
  
  Revision  Changes    Path
  1.8       +10 -5     jakarta-ant-myrmidon/src/stylesheets/build.xsl
  
  Index: build.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-ant-myrmidon/src/stylesheets/build.xsl,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xsl 20 Apr 2002 01:39:25 -0000      1.7
  +++ build.xsl 20 Apr 2002 07:33:49 -0000      1.8
  @@ -288,20 +288,25 @@
                   </xsl:if>
               </target>
   
  -            <!-- Creates the distribution -->
  -            <target name="dist"
  -                    depends="jars, test, javadocs"
  -                    description="Creates the distribution">
  +            <!-- Creates a minimal distribuion -->
  +            <target name="dist-lite" depends="jars" description="Creates a 
minimal distribution">
   
                   <mkdir dir="${{dist.dir}}"/>
   
                   <copy todir="${{dist.dir}}">
                       <fileset dir="${{build.lib}}" includes="*.jar, *.atl"/>
  -                    <fileset dir=".." includes="LICENSE.txt, KEYS, WARNING"/>
  +                    <fileset dir=".." includes="LICENSE.txt, KEYS, 
WARNING.txt"/>
                       <fileset dir="." includes="README.txt"/>
                   </copy>
   
                   <xsl:copy-of select="build/dist-prepare/*"/>
  +
  +            </target>
  +
  +            <!-- Creates the distribution -->
  +            <target name="dist"
  +                    depends="dist-lite, test, javadocs"
  +                    description="Creates the distribution">
   
                   <mkdir dir="${{dist.base}}"/>
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to