Let's just install rather than build and install here as well.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@337 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2007-11-10 19:43:07 +00:00
parent fd64f4d460
commit 93e28d42a6
4 changed files with 6 additions and 7 deletions
+3 -4
View File
@@ -80,7 +80,7 @@
</target>
<!-- build the native libraries -->
<target name="ncompile" depends="prepare">
<target name="ninstall" depends="prepare">
<echo level="info" message="Doing native compilation on ${os.name}..."/>
<exec os="Linux" dir="src/java/com/threerings/util/keybd/Linux"
executable="make"><arg line="install"/></exec>
@@ -122,11 +122,10 @@
</target>
<!-- a target for rebuilding everything -->
<target name="all"
depends="clean,prepare,compile,ncompile,javadoc,tests,dist"/>
<target name="all" depends="clean,prepare,compile,ninstall,javadoc,tests,dist"/>
<!-- builds our distribution files (war and jar) -->
<target name="dist" depends="prepare,compile,ncompile,tests">
<target name="dist" depends="prepare,compile,ninstall,tests">
<!-- build our various jar files -->
<jar destfile="${deploy.dir}/${app.name}-rsrc.jar">
<fileset dir="${classes.dir}" includes="com/threerings/resource/**"/>
@@ -29,7 +29,7 @@ TARGET=libunsafe.so
all: ${TARGET}
install: ${TARGET}
install:
@${MKDIR} -p ${INSTALL_PATH}
cp ${TARGET} ${INSTALL_PATH}
@@ -28,7 +28,7 @@ TARGET=libunsafe.so
all: ${TARGET}
install: ${TARGET}
install:
@${MKDIR} -p ${INSTALL_PATH}
cp ${TARGET} ${INSTALL_PATH}
@@ -29,7 +29,7 @@ TARGET=libunsafe.jnilib
all: ${TARGET}
install: ${TARGET}
install:
@${MKDIR} -p ${INSTALL_PATH}
cp ${TARGET} ${INSTALL_PATH}