13 |
13 |
14 <!-- |
14 <!-- |
15 ** TARGET DEFINITIONS |
15 ** TARGET DEFINITIONS |
16 --> |
16 --> |
17 |
17 |
18 <target name="sf-build" depends="sf-prep,sf-prebuild,sf-get-source,sf-build-run,sf-postbuild"> |
18 <target name="sf-prep" depends="sf-parse-spec,prep-drive,init-build-area,check-tool-dependencies,create-bom,log-build-env"> |
19 <echo>[SF-BUILD]</echo> |
|
20 </target> |
|
21 |
|
22 <target name="sf-build-noprep"> |
|
23 <echo>[SF-BUILD-NO-PREP]</echo> |
|
24 </target> |
|
25 |
|
26 <target name="sf-prep" depends="prep-drive,init-build-area,check-tool-dependencies,create-bom,log-build-env"> |
|
27 <echo>[SF-PREP]</echo> |
19 <echo>[SF-PREP]</echo> |
28 <tempfile property="prep.dynamic.config" suffix="ant.xml" destdir="${temp.build.dir}"/> |
20 <tempfile property="prep.dynamic.config" suffix="ant.xml" destdir="${temp.build.dir}"/> |
29 </target> |
21 </target> |
30 |
22 |
|
23 <!--target name="sf-build" depends="sf-parse-spec,sf-prebuild,sf-build-run,sf-postbuild"--> |
|
24 <target name="sf-build" depends="sf-parse-spec,sf-prebuild,sf-build-run"> |
|
25 <echo>[SF-BUILD]</echo> |
|
26 </target> |
|
27 |
|
28 <target name="sf-build-noprep"> |
|
29 <echo>[SF-BUILD-NO-PREP]</echo> |
|
30 </target> |
|
31 |
|
32 <target name="sf-parse-spec"> |
|
33 <echo>[SF-PARSE-SPEC]</echo> |
|
34 |
|
35 </target> |
|
36 |
31 <target name="sf-prebuild"> |
37 <target name="sf-prebuild"> |
32 <echo>[SF-PREBUILD]</echo> |
38 <echo>[SF-PREBUILD]</echo> |
33 |
39 |
34 <if> |
40 <if> |
35 <istrue value="${sf.prebuild.getenv}" /> |
41 <istrue value="${sf.baseline.enable}" /> |
36 <then> |
42 <then> |
37 <runtarget target="preparation-getenv"/> |
43 <runtarget target="preparation-getenv"/> |
38 </then> |
44 </then> |
39 </if> |
45 </if> |
40 |
46 |