1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="euc-kr"?>
- <!--
- Copyright 2006 Hyundai Information Technology Co., Ltd. All rights reserved.
- -->
- <project name="instantmsgxp" 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>
- </project>
|