mirror of
https://github.com/SWG-Source/swg-main.git
synced 2026-01-16 20:04:18 -05:00
Changed ANT ACM commands to follow naming standard
This commit is contained in:
14
build.xml
14
build.xml
@@ -555,7 +555,7 @@
|
||||
</target>
|
||||
|
||||
<!-- Begin ACM Related Targets -->
|
||||
<target name="copy-files">
|
||||
<target name="copy_files">
|
||||
<echo>Step 1: Copy customization data files from repo.</echo>
|
||||
<copy todir="${build}">
|
||||
<fileset dir="${dsrc_shared}/customization">
|
||||
@@ -568,7 +568,7 @@
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="create-lookup-table">
|
||||
<target name="create_lookup_table">
|
||||
<echo>Step 2: Scanning clientdata and creating the Tree File Lookup Table.</echo>
|
||||
<fileset id="shared" dir="${clientdata}">
|
||||
<include name="**/*"/>
|
||||
@@ -580,7 +580,7 @@
|
||||
<concat destfile="${treexlat}"><header filtering="no" trim="yes">p ${clientdata}/:0</header>${line.separator}${assets}:0${line.separator}</concat>
|
||||
</target>
|
||||
|
||||
<target name="collect-info">
|
||||
<target name="collect_info">
|
||||
<echo>Step 3a: Collecting information on customizable assets from our clientdata.</echo>
|
||||
<exec executable="perl" dir="${perl_tools}" output="${custinfo}">
|
||||
<env key="PERL5LIB" value="${env.PERL5LIB}:${swgperllib}"/>
|
||||
@@ -599,7 +599,7 @@
|
||||
</concat>
|
||||
</target>
|
||||
|
||||
<target name="optimize-info">
|
||||
<target name="optimize_info">
|
||||
<echo>Step 4a: Creating an optimized customizations info file.</echo>
|
||||
<exec executable="perl" dir="${perl_tools}">
|
||||
<env key="PERL5LIB" value="${env.PERL5LIB}:${swgperllib}"/>
|
||||
@@ -622,7 +622,7 @@
|
||||
<move file="${custopt}.sort" tofile="${custopt}"/>
|
||||
</target>
|
||||
|
||||
<target name="build-acm-data">
|
||||
<target name="build_acm_data">
|
||||
<echo>Step 5: Building the ACM MIF data file</echo>
|
||||
<exec executable="perl" dir="${perl_tools}">
|
||||
<env key="PERL5LIB" value="${env.PERL5LIB}:${swgperllib}"/>
|
||||
@@ -638,7 +638,7 @@
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<target name="miff-acm">
|
||||
<target name="miff_acm">
|
||||
<echo>Step 6: Building the ACM IFF (final step)</echo>
|
||||
<exec executable="./Miff" dir="${tools_home}">
|
||||
<env key="PATH" value="${env.PATH}:${tools_home}"/>
|
||||
@@ -649,7 +649,7 @@
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<target name="build-acm" depends="copy-files,create-lookup-table,collect-info,optimize-info,build-acm-data,miff-acm">
|
||||
<target name="build_acm" depends="copy_files,create_lookup_table,collect_info,optimize_info,build_acm_data,miff_acm">
|
||||
</target>
|
||||
<!-- End ACM Related targets -->
|
||||
|
||||
|
||||
Reference in New Issue
Block a user