diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 1999-12-20 20:03:17 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 1999-12-20 20:03:17 +0000 |
commit | 41ae76a07113b7f77e70ec96438367a833e7019e (patch) | |
tree | c11a6587df064d7aac0c19623b6b353a00d356fa /network_io/unix/Makefile.in | |
parent | c6fdda7718de24959aa38e8a5821ffa4cf15ff64 (diff) | |
download | libapr-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 'network_io/unix/Makefile.in')
-rw-r--r-- | network_io/unix/Makefile.in | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/network_io/unix/Makefile.in b/network_io/unix/Makefile.in index 6a8955ebc..c066643e7 100644 --- a/network_io/unix/Makefile.in +++ b/network_io/unix/Makefile.in @@ -9,9 +9,8 @@ RANLIB=@RANLIB@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) -INCDIR=../../inc -INCDIR1=../../include -INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I. +INCDIR=../../include +INCLUDES=-I$(INCDIR) -I. LIB=libnetwork.a @@ -24,7 +23,7 @@ OBJS=poll.o \ .c.o: $(CC) $(CFLAGS) -c $(INCLUDES) $< -all: $(LIB) +all: $(OBJS) clean: $(RM) -f *.o *.a *.so @@ -34,10 +33,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 |