diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-08 17:38:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-08 17:38:23 +0000 |
commit | b915ca68f9cc0d5e17e75b79be284ae50f3904ec (patch) | |
tree | 1c70f971fba0eb19912484adbefec0f0a5179deb | |
parent | 703fc264f08f8135e1a7e0a21c086ef983f3f236 (diff) |
'make distcheck' works now
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | tests/Makefile.am | 4 |
3 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 9e4dc5a95..415bde30c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,6 +10,10 @@ EXTRA_DIST = \ SUBDIRS = docs lib src include tests packages +# create a root makefile in the distribution: +dist-hook: + cp Makefile.dist $(distdir)/Makefile + test: @(cd tests; make quiet-test) diff --git a/configure.in b/configure.in index f4a0a2a17..c6de40711 100644 --- a/configure.in +++ b/configure.in @@ -615,6 +615,7 @@ AC_OUTPUT( Makefile \ src/Makefile \ lib/Makefile \ tests/Makefile \ + tests/data/Makefile \ packages/Makefile \ packages/Win32/Makefile \ packages/Linux/Makefile \ diff --git a/tests/Makefile.am b/tests/Makefile.am index aa37e3039..f2a917ae5 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,6 @@ -EXTRA_DIST = data ftpserver.pl httpserver.pl runtests.pl +EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl + +SUBDIRS = data all: install: |