summaryrefslogtreecommitdiff
path: root/time
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 /time
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 'time')
-rw-r--r--time/unix/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/time/unix/Makefile.in b/time/unix/Makefile.in
index fc67c014f..523334376 100644
--- a/time/unix/Makefile.in
+++ b/time/unix/Makefile.in
@@ -12,7 +12,7 @@ LDFLAGS=@LDFLAGS@ $(LIBS)
INCDIR=../../include
INCLUDES=-I$(INCDIR) -I.
-LIB=libtime.a
+#LIB=libtime.a
OBJS=time.o \
access.o \
@@ -21,7 +21,7 @@ OBJS=time.o \
.c.o:
$(CC) $(CFLAGS) -c $(INCLUDES) $<
-all: $(LIB)
+all: $(OBJS)
clean:
$(RM) -f *.o *.a *.so
@@ -31,10 +31,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