summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-21 22:05:04 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-21 22:05:04 +0000
commit8d0e2f9b242ed72a58307b15adc2ed0ce5a51896 (patch)
treead9014a6304bc8727b575a113260c7d193988259 /Makefile.in
parenteb33e963224602394247408aa49e8533b0f6498e (diff)
downloadlibapr-8d0e2f9b242ed72a58307b15adc2ed0ce5a51896.tar.gz
Cleanup the Makefile for APR a bit. Get rid of some of the echos, and
just display the commands as they are executed. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59550 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 6c3b92dc8..6c71c8ac3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,12 +42,8 @@ all: Makefile $(MODULES) subdirs
@rm -Rf objs
@mkdir objs
@rm -f @LIBPREFIX@apr.a
- @echo "===> Copying object files to objs directory"
- @for i in $(SUBDIRS); do cp $$i/*.o objs ; done;
- @echo "<=== Done Copying files"
- @echo "===> Creating unified library"
- @$(AR) cr @LIBPREFIX@apr.a objs/*.o
- @echo "<=== Library built"
+ for i in $(SUBDIRS); do cp $$i/*.o objs ; done;
+ $(AR) cr @LIBPREFIX@apr.a objs/*.o
clean: subdirs_clean
$(RM) -f *.o *.a *.so objs/*.o