changeset 54:eb66a69d6a99

2008-08-11 Joshua Sumali <jsumali@redhat.com> * .hgignore: Updated. * Makefile.am: Add libpulse-java.so to clean-local. * src/native/Makefile.am: Copy libpulse-java.so to the top dir after building.
author Joshua Sumali <jsumali@redhat.com>
date Mon, 11 Aug 2008 13:22:06 -0400
parents af943a0023a2
children a1efb395982d
files .hgignore ChangeLog Makefile.am src/native/Makefile.am
diffstat 4 files changed, 15 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Mon Aug 11 10:43:20 2008 -0400
+++ b/.hgignore	Mon Aug 11 13:22:06 2008 -0400
@@ -14,6 +14,7 @@
 config.status
 configure
 pulseaudio-java.jar
+libpulse-java.so
 libtool
 autom4te.cache/*
 src/native/.deps
--- a/ChangeLog	Mon Aug 11 10:43:20 2008 -0400
+++ b/ChangeLog	Mon Aug 11 13:22:06 2008 -0400
@@ -1,3 +1,10 @@
+2008-08-11  Joshua Sumali  <jsumali@redhat.com>
+
+	* .hgignore: Updated.
+	* Makefile.am: Add libpulse-java.so to clean-local.
+	* src/native/Makefile.am: Copy libpulse-java.so to the top dir after
+	building.
+
 2008-08-11  Joshua Sumali  <jsumali@redhat.com>
 
 	* .hgignore: Updated.
--- a/Makefile.am	Mon Aug 11 10:43:20 2008 -0400
+++ b/Makefile.am	Mon Aug 11 13:22:06 2008 -0400
@@ -1,5 +1,6 @@
 SUBDIRS = src/native
 
 clean-local:
-	ant clean
+	ant clean ; \
+	rm -f libpulse-java.so ; 
 
--- a/src/native/Makefile.am	Mon Aug 11 10:43:20 2008 -0400
+++ b/src/native/Makefile.am	Mon Aug 11 13:22:06 2008 -0400
@@ -15,3 +15,8 @@
 
 PLATFORM_FLAGS = -DWITH_32BIT_PLATFORM
 
+topdir = ../..
+
+all-local: $(lib_LTLIBRARIES)
+	cp .libs/libpulse-java.so $(topdir)
+