From: Keith Packard Date: Fri, 10 Sep 2010 03:59:29 +0000 (-0700) Subject: altosui: libaltos.so is built with libtool -- it's in ../libaltos/.libs X-Git-Tag: 0.7.1~9 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=dd2b77b2a516a055f29191dcdfeb727e637aae86 altosui: libaltos.so is built with libtool -- it's in ../libaltos/.libs It used to be in ../libaltos Signed-off-by: Keith Packard --- diff --git a/ao-tools/altosui/Makefile.am b/ao-tools/altosui/Makefile.am index 3e0d7c9b..56e6d7ae 100644 --- a/ao-tools/altosui/Makefile.am +++ b/ao-tools/altosui/Makefile.am @@ -143,7 +143,15 @@ altosui-test: Makefile echo 'exec java -cp "$(FREETTS)/*" -Djava.library.path="../libaltos/.libs" -jar altosui.jar "$$@"' >> $@ chmod +x $@ -$(LIBALTOS): +libaltos.so: + -rm -f "$@" + $(LN_S) ../libaltos/.libs/"$@" . + +libaltos.dylib: + -rm -f "$@" + $(LN_S) ../libaltos/"$@" . + +altos.dll: -rm -f "$@" $(LN_S) ../libaltos/"$@" .