diff options
author | Ryan Bloom <rbb@apache.org> | 1999-12-20 20:03:17 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-12-20 20:03:17 +0000 |
commit | ad0a05e107498e17b7095d357108dac6209ddbdb (patch) | |
tree | c11a6587df064d7aac0c19623b6b353a00d356fa /mmap | |
parent | aef94c597d86b6d0bb2c6507cbb7fafb5e7ca76e (diff) | |
download | apr-ad0a05e107498e17b7095d357108dac6209ddbdb.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: https://svn.apache.org/repos/asf/apr/apr/trunk@59544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap')
-rw-r--r-- | mmap/unix/Makefile.in | 14 |
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 |