diff options
author | rse <rse@13f79535-47bb-0310-9956-ffa450edef68> | 1999-09-10 16:06:59 +0000 |
---|---|---|
committer | rse <rse@13f79535-47bb-0310-9956-ffa450edef68> | 1999-09-10 16:06:59 +0000 |
commit | 558b62c55d780ecb7e7a1da62386d136e65b305a (patch) | |
tree | 3e00828243518cd81d46206b1a0c176e37ac1778 /Makefile.in | |
parent | 57ca5912a95d095a5acd3afbeab66de64b177efc (diff) | |
download | libapr-558b62c55d780ecb7e7a1da62386d136e65b305a.tar.gz |
Let's integrate APR better into the source tree, because it's more than boring
if one cannot even compile the beast easily (sorry Ryan that I do not agree
with you here - I think that this is important and has to be done early or
people will not work with the stuff)...
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in index bce6e791c..5687e19b1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -7,6 +7,7 @@ SHELL=@SH@ # Macros for compilation commands # @SET_MAKE@ +MFLAGS_STATIC= RM=@RM@ CC=@CC@ CFLAGS=@CFLAGS@ @OPTIM@ @@ -39,10 +40,9 @@ SUBDIRS=lib file_io/@OSDIR@ network_io/@OSDIR@ threadproc/@OSDIR@ \ # building the entire package. # all: Makefile $(MODULES) subdirs - rm -Rf libs - mkdir libs + @rm -Rf libs + @mkdir libs @for i in $(SUBDIRS); do cp $$i/*.a libs ; done; - @echo APR built. clean: subdirs_clean $(RM) -f *.o *.a *.so @@ -54,27 +54,27 @@ distclean: clean subdirs: @for i in $(SUBDIRS); do \ - echo "===> $$i"; \ + echo "===> $(SDP)lib/apr/$$i"; \ ( cd $$i && $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' \ CC='$(CC)' AUX_CFLAGS='$(AUX_CFLAGS)' RANLIB='$(RANLIB)' ) \ || exit 1; \ - echo "<=== $$i"; \ + echo "<=== $(SDP)lib/apr/$$i"; \ done; subdirs_depend: @for i in $(SUBDIRS); do \ - echo "===> $$i"; \ - ( cd $$i && $(MAKE) depend ) \ + echo "===> $(SDP)lib/apr/$$i"; \ + ( cd $$i && $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' depend ) \ || exit 1; \ - echo "<=== $$i"; \ + echo "<=== $(SDP)lib/apr/$$i"; \ done; subdirs_clean: @for i in $(SUBDIRS); do \ - echo "===> $$i"; \ - ( cd $$i && $(MAKE) clean ) \ + echo "===> $(SDP)lib/apr/$$i"; \ + ( cd $$i && $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' clean ) \ || exit 1; \ - echo "<=== $$i"; \ + echo "<=== $(SDP)lib/apr/$$i"; \ done; # DO NOT REMOVE |