more clean up

This commit is contained in:
Sébastien Loriot 2025-01-21 11:30:48 +01:00
parent 40c8d76834
commit e4adcceaad
4 changed files with 1 additions and 32 deletions

1
.gitattributes vendored
View File

@ -44,7 +44,6 @@ Documentation/Doxyfile text eol=lf
Documentation/pkglist_filter text eol=lf
Installation/update_CHANGES text eol=lf
Scripts/developer_scripts/autotest_cgal text eol=lf
Scripts/developer_scripts/autotest_cgal_with_cmake text eol=lf
Scripts/developer_scripts/cgal_build text eol=lf
Scripts/developer_scripts/cgal_depend text eol=lf
Scripts/developer_scripts/cgal_git_update_hooks_for_client text eol=lf

View File

@ -46,7 +46,7 @@ Then you need to compile this flat release and set `CGAL_DIR` accordingly as exp
To run the test-suite simply do:
\code
> cd CGAL-I-FOO/test
> ./run_testsuite_with_cmake
> ./run_testsuite_with_ctest
\endcode
and wait for the results to be written in the file `error.txt`.

View File

@ -1,15 +0,0 @@
# A GNU makefile which calls run_testsuite_with_cmake over all directories.
dirs:=$(wildcard */)
targets:=$(addsuffix pink_elephant,$(dirs))
cleans:=$(addsuffix green_elephant,$(dirs))
all: ${targets}
clean: ${cleans}
%/pink_elephant:
@+./run_testsuite_with_cmake $*
%/green_elephant:
@cd $* && $(MAKE) clean

View File

@ -1,15 +0,0 @@
# A GNU makefile which calls run_testsuite_with_cmake over all directories.
dirs:=$(wildcard ../../*/test/*/)
targets:=$(addsuffix pink_elephant,$(dirs))
cleans:=$(addsuffix green_elephant,$(dirs))
all: ${targets}
clean: ${cleans}
%/pink_elephant:
@+./run_testsuite_with_cmake $*
%/green_elephant:
@cd $* && $(MAKE) clean