aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index a48c323cf..ee4149323 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -13,10 +13,14 @@ bin_SCRIPTS = curl-config
SUBDIRS = lib src
DIST_SUBDIRS = $(SUBDIRS) tests include packages docs
-# create a root makefile in the distribution:
dist-hook:
rm -rf $(top_builddir)/tests/log
- cp $(srcdir)/Makefile.dist $(distdir)/Makefile
+ find $(distdir) -name "*.dist" -exec rm {} \;
+ (distit=`find $(srcdir) -name "*.dist"`; \
+ for file in $$distit; do \
+ strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
+ cp $$file $(distdir)$$strip; \
+ done)
html:
cd docs; make html