summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-04-06 18:57:17 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-04-06 18:57:17 +0000
commitcd35cada41ee653dadba5e6999a03d4382965a8b (patch)
tree671d36803608e076546a1efb8c5f0bb142176056 /Makefile.in
parent9367d04b53aa2d7d656609e285388680fdec6556 (diff)
downloadlibapr-cd35cada41ee653dadba5e6999a03d4382965a8b.tar.gz
Make libtool a configure-time option. This is done with --without-libtool.
The default is to use libtool git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61465 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 2065af7f4..6375665a1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,7 +42,7 @@ includedir=@includedir@
delete-lib:
@if test -f $(TARGET_LIB); then \
- for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \
+ for i in $(SUBDIRS); do objects="$$objects $$i/*.@so_ext@"; done ; \
if test -n "`find $$objects -newer $(TARGET_LIB)`"; then \
echo Found newer objects. Will relink $(TARGET_LIB). ; \
echo $(RM) -f $(TARGET_LIB) ; \
@@ -61,9 +61,8 @@ install: $(TARGET_LIB)
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
$(TARGET_LIB):
- @for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \
- echo $(LINK) -rpath $(libdir) $$objects ; \
- $(LINK) -rpath $(libdir) $$objects
+ @for i in $(SUBDIRS); do objects="$$objects $$i/*.@so_ext@"; done ; \
+ $(LINK)
delete-exports:
@if test -f $(TARGET_EXPORTS); then \