12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="euc-kr"?>
- <!--
- Copyright 2006 Hyundai Information Technology Co., Ltd. All rights reserved.
- -->
- <project name="xpapps" default="build" basedir=".">
- <property name="shared.dir" location="${basedir}/../shared"/>
- <import file="${shared.dir}/script/buildweb.xml"/>
- <target name="init">
- <webinit/>
- </target>
-
- <target name="clean">
- <webclean/>
- </target>
-
- <target name="compile" depends="init" if="src.dir.present">
- <webcompile/>
- </target>
-
- <target name="build" depends="compile">
- <makejar/>
- </target>
-
- <target name="deploy" depends="build">
- <webdeploy/>
- </target>
-
- <target name="copy" depends="build">
- <webcopy/>
- </target>
- <target name="imgbuild" depends="compile">
- <makejar ifxpimg="true"/>
- </target>
- <target name="imgcopy" depends="imgbuild">
- <webcopy/>
- </target>
-
- </project>
|