diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-06 18:57:17 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-06 18:57:17 +0000 |
commit | cd35cada41ee653dadba5e6999a03d4382965a8b (patch) | |
tree | 671d36803608e076546a1efb8c5f0bb142176056 /build | |
parent | 9367d04b53aa2d7d656609e285388680fdec6556 (diff) | |
download | libapr-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 'build')
-rw-r--r-- | build/rules.mk.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/rules.mk.in b/build/rules.mk.in index 133c24fc9..0b672aa26 100644 --- a/build/rules.mk.in +++ b/build/rules.mk.in @@ -83,10 +83,10 @@ LTFLAGS = --silent # # Basic macro setup # -COMPILE = $(CC) $(CPPFLAGS) $(INCLUDES) $(CFLAGS) $(OPTIM) -LT_COMPILE = $(LIBTOOL) --mode=compile $(LTFLAGS) $(COMPILE) -c $< && touch $@ +COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(OPTIM) $(INCLUDES) +LT_COMPILE = @lt_compile@ -LINK = $(LIBTOOL) --mode=link $(LTFLAGS) $(COMPILE) $(LDFLAGS) -o $@ +LINK = @link@ MKEXPORT = $(AWK) -f $(apr_builders)/make_export.awk MKDEP = $(apr_builders)/mkdep.sh |