summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <alberto.ruiz@sun.com>2007-11-21 15:38:23 +0000
committerAlberto Ruiz <alberto.ruiz@sun.com>2007-11-21 15:38:23 +0000
commit87d175ccc9809d553c1a23aff7149bff4512481e (patch)
tree24eb7f28478b1631c80620ce276640aa5fff7aa2
parentaadeffb3f0716ffd231d1146d050847e3be355ee (diff)
Simplified build.xml.inHEADmaster
-rw-r--r--src/com/sun/apoc/daemon/build.xml.in23
1 files changed, 2 insertions, 21 deletions
diff --git a/src/com/sun/apoc/daemon/build.xml.in b/src/com/sun/apoc/daemon/build.xml.in
index 0ddc898..3109cf9 100644
--- a/src/com/sun/apoc/daemon/build.xml.in
+++ b/src/com/sun/apoc/daemon/build.xml.in
@@ -1,17 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<!--
-#*************************************************************************
-#*
-#* $RCSfile: build.xml,v $
-#*
-#* Creation date cas 12 February, 2002
-#* last change $Author: cm122549 $ $Date: 2006/11/27 15:42:26 $
-#* $Revision: 1.4 $
-#*
-#* Copyright 2003, Sun Microsystems, Inc. All Rights Reserved.
-#*
-#*************************************************************************
--->
<project name="ap_policy" default="main" basedir="../../../../../">
<property name="jarname" value="apocd.jar"/>
@@ -20,12 +7,6 @@
<property name="build.class" value="build/class"/>
<property name="build.inc" value="build/inc"/>
- <target name="info">
- <echo message="-------------------------------"/>
- <echo message="| APOC Daemon |"/>
- <echo message="-------------------------------"/>
- </target>
-
<path id="classpath">
<pathelement location="@SPIJDK@"/>
<pathelement location="@BDBJDK@"/>
@@ -77,9 +58,9 @@
</jar>
</target>
- <target name="main" depends="info, jar"/>
+ <target name="main" depends="jar"/>
- <target name="clean" depends="info">
+ <target name="clean">
<delete file="${build.class}/${jarname}"/>
<delete dir="${build.class}/${package}"/>
</target>