diff options
author | Keith Packard <keithp@keithp.com> | 2010-09-09 20:59:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-09-09 20:59:29 -0700 |
commit | dd2b77b2a516a055f29191dcdfeb727e637aae86 (patch) | |
tree | 0b83b8eec58a35ef95dd9eba7708c8ad55c5fb62 /ao-tools | |
parent | 72a5c1258db92d0ddd660bfa875e8e55cab47af7 (diff) |
altosui: libaltos.so is built with libtool -- it's in ../libaltos/.libs
It used to be in ../libaltos
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools')
-rw-r--r-- | ao-tools/altosui/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
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/"$@" . |