summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-20 20:03:17 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-20 20:03:17 +0000
commit41ae76a07113b7f77e70ec96438367a833e7019e (patch)
treec11a6587df064d7aac0c19623b6b353a00d356fa /lib
parentc6fdda7718de24959aa38e8a5821ffa4cf15ff64 (diff)
downloadlibapr-41ae76a07113b7f77e70ec96438367a833e7019e.tar.gz
Fix the build process for APR. There is no reason to build each library
individually if we are just going to combine them into one library later. I am just commenting out those lines we don't need anymore. They will probably go away very soon, but I want to think about it a bit more. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index d03b6b95c..c92712748 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -14,7 +14,7 @@ INCDIR=../include
INCDIR1=../misc/@OSDIR@
INCLUDES=-I$(INCDIR) -I$(INCDIR1)
-LIB=@LIBPREFIX@apr.a
+#LIB=@LIBPREFIX@apr.a
OBJS=apr_cpystrn.o \
apr_fnmatch.o \
@@ -30,7 +30,7 @@ OBJS=apr_cpystrn.o \
.c.o:
$(CC) $(CFLAGS) -c $(INCLUDES) $<
-all: $(LIB)
+all: $(OBJS)
clean:
$(RM) -f *.o *.a *.so
@@ -40,10 +40,10 @@ distclean: clean
$(OBJS): Makefile
-$(LIB): $(OBJS)
- $(RM) -f $@
- $(AR) cr $@ $(OBJS)
- $(RANLIB) $@
+#$(LIB): $(OBJS)
+# $(RM) -f $@
+# $(AR) cr $@ $(OBJS)
+# $(RANLIB) $@
#
# We really don't expect end users to use this rule. It works only with