Show
Ignore:
Timestamp:
02/28/09 17:57:14 (15 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

Drobnosti a Substance LaF

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • java/SuperPostak/nbproject/build-impl.xml

    r0 r3  
    154154            <attribute default="${excludes}" name="excludes"/> 
    155155            <attribute default="${javac.debug}" name="debug"/> 
    156             <attribute default="" name="sourcepath"/> 
     156            <attribute default="/does/not/exist" name="sourcepath"/> 
    157157            <element name="customize" optional="true"/> 
    158158            <sequential> 
     
    220220        </macrodef> 
    221221    </target> 
    222     <target name="-init-macrodef-nbjpda"> 
     222    <target depends="-init-debug-args" name="-init-macrodef-nbjpda"> 
    223223        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1"> 
    224224            <attribute default="${main.class}" name="name"/> 
     
    226226            <attribute default="" name="stopclassname"/> 
    227227            <sequential> 
    228                 <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="dt_socket"> 
     228                <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}"> 
    229229                    <classpath> 
    230230                        <path path="@{classpath}"/> 
     
    257257            <istrue value="${have-jdk-older-than-1.4}"/> 
    258258        </condition> 
     259        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem"> 
     260            <os family="windows"/> 
     261        </condition> 
     262        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}"> 
     263            <isset property="debug.transport"/> 
     264        </condition> 
    259265    </target> 
    260266    <target depends="-init-debug-args" name="-init-macrodef-debug"> 
     
    266272                <java classname="@{classname}" dir="${work.dir}" fork="true"> 
    267273                    <jvmarg line="${debug-args-line}"/> 
    268                     <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/> 
     274                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/> 
    269275                    <jvmarg line="${run.jvmargs}"/> 
    270276                    <classpath> 
     
    316322        <ant antfile="${project.Postak}/build.xml" inheritall="false" target="jar"/> 
    317323    </target> 
     324    <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/> 
     325    <target depends="init" name="-check-automatic-build"> 
     326        <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/> 
     327    </target> 
     328    <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build"> 
     329        <antcall target="clean"/> 
     330    </target> 
    318331    <target depends="init,deps-jar" name="-pre-pre-compile"> 
    319332        <mkdir dir="${build.classes.dir}"/> 
     
    336349        <!-- You can override this target in the ../build.xml file. --> 
    337350    </target> 
    338     <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/> 
     351    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/> 
    339352    <target name="-pre-compile-single"> 
    340353        <!-- Empty placeholder for easier customization. --> 
     
    350363        <!-- You can override this target in the ../build.xml file. --> 
    351364    </target> 
    352     <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/> 
     365    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/> 
    353366    <!-- 
    354367                ====================