|
@@ -27,9 +27,7 @@
|
|
|
<property name="build.classes" location="${build}/classes" />
|
|
|
<property name="build.dist" location="${build}/dist" />
|
|
|
<property name="build.dist.doc" location="${build.dist}/doc" />
|
|
|
- <property name="build.dist.game" location="${build.dist}/gameserver" />
|
|
|
- <property name="build.dist.images" location="${build.dist}/images" />
|
|
|
- <property name="build.dist.languages" location="${build.dist}/languages" />
|
|
|
+ <property name="build.dist.game" location="${build.dist}/game" />
|
|
|
<property name="build.dist.libs" location="${build.dist}/libs" />
|
|
|
<property name="build.dist.login" location="${build.dist}/login" />
|
|
|
<property name="build.dist.tools" location="${build.dist}/tools" />
|
|
@@ -147,26 +145,18 @@
|
|
|
</target>
|
|
|
|
|
|
<target name="dist" depends="jar">
|
|
|
- <copy todir="${build.dist.doc}">
|
|
|
- <fileset dir="dist/doc" />
|
|
|
+ <copy todir="${build.dist}">
|
|
|
+ <fileset dir="dist" />
|
|
|
</copy>
|
|
|
<concat destfile="${build.dist.doc}/L2J_Server_CHANGELOG.txt">${l2j.changelog}</concat>
|
|
|
<copy todir="${build.dist.game}">
|
|
|
- <fileset dir="dist/game" />
|
|
|
<fileset dir="misc" />
|
|
|
</copy>
|
|
|
<concat destfile="${build.dist.game}/config/l2j-version.properties">version=${l2j.version}${line.separator}builddate=${build.tstamp}</concat>
|
|
|
- <copy todir="${build.dist.images}">
|
|
|
- <fileset dir="dist/images" />
|
|
|
- </copy>
|
|
|
- <copy todir="${build.dist.languages}">
|
|
|
- <fileset dir="dist/languages" />
|
|
|
- </copy>
|
|
|
<copy todir="${build.dist.libs}">
|
|
|
<fileset dir="lib" />
|
|
|
</copy>
|
|
|
<copy todir="${build.dist.login}">
|
|
|
- <fileset dir="dist/login" />
|
|
|
<fileset dir="misc" />
|
|
|
</copy>
|
|
|
<fixcrlf srcdir="${build.dist.game}" eol="crlf" eof="remove" includes="**/*.bat" />
|