[Modsnake-cvs] (jick) mod_snake/testsuite Makefile.in
Status: Alpha
Brought to you by:
jick
|
From: Mod S. C. L. <mod...@so...> - 2002-01-10 22:31:41
|
Mod Snake CVS committal Author : jick Project : mod_snake Module : testsuite Dir : mod_snake/testsuite Modified Files: Makefile.in Log Message: Make sure we ship everything that people will need to run the testsuite. =================================================================== RCS file: /cvsroot/modsnake/mod_snake/testsuite/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- Makefile.in 2001/01/30 06:40:23 1.3 +++ Makefile.in 2002/01/10 22:31:40 1.4 @@ -5,11 +5,16 @@ dist: -mkdir -p $(DISTDIR)/conf -mkdir -p $(DISTDIR)/logs + -mkdir -p $(DISTDIR)/modules + -mkdir -p $(DISTDIR)/tests -mkdir -p $(DISTDIR)/htdocs/images cp -p conf/*.in conf/mime.types conf/magic $(DISTDIR)/conf cp -p run_tests.py server_config.py.in Makefile.in $(DISTDIR) - cp -p htdocs/image_send.epy $(DISTDIR)/htdocs - cp -p htdocs/images/foo.jpg $(DISTDIR)/htdocs + cp -p testutil.py $(DISTDIR) + cp -p htdocs/image_send.epy htdocs/formtest.epy $(DISTDIR)/htdocs + cp -p htdocs/images/foo.jpg $(DISTDIR)/htdocs/images + cp -p modules/*.py $(DISTDIR)/modules + cp -p tests/*.py $(DISTDIR)/tests check: @$(PYTHON_BIN) run_tests.py |