summaryrefslogtreecommitdiff
path: root/mmap/unix
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 /mmap/unix
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 'mmap/unix')
-rw-r--r--mmap/unix/Makefile.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/mmap/unix/Makefile.in b/mmap/unix/Makefile.in
index 75510feef..f5f98d2fb 100644
--- a/mmap/unix/Makefile.in
+++ b/mmap/unix/Makefile.in
@@ -9,8 +9,8 @@ RANLIB=@RANLIB@
CFLAGS=@CFLAGS@ @OPTIM@
LIBS=@LIBS@
LDFLAGS=@LDFLAGS@ $(LIBS)
-INCDIR=../../inc
-INCDIR1=../../include -I../../file_io/@OSDIR@
+INCDIR=../../include
+INCDIR1=../../file_io/@OSDIR@
INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I.
LIB=libmmap.a
@@ -20,7 +20,7 @@ OBJS=mmap.o common.o
.c.o:
$(CC) $(CFLAGS) -c $(INCLUDES) $<
-all: $(LIB)
+all: $(OBJS)
clean:
$(RM) -f *.o *.a *.so
@@ -30,10 +30,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