star-cad

Geometric operators for computer-aided design
git clone git://git.meso-star.fr/star-cad.git
Log | Files | Refs | README | LICENSE

commit 846101b63c3cc9ee59392afaace9dca8ab8ca0a7
parent 5aa3997f5651a34713562052d7533d56f45958c0
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Sun,  5 May 2024 10:14:39 +0200

Ignore files generated by tests

Delete them with the "clean" Makefile target.

Diffstat:
M.gitignore | 1+
MMakefile | 16++++++++++++++++
2 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -10,3 +10,4 @@ test* .test tags *.pc +*.stl diff --git a/Makefile b/Makefile @@ -150,6 +150,22 @@ test: build_tests clean_test: $(SHELL) make.sh clean_test $(TEST_SRC) + rm -f bin_cube2.stl + rm -f bin_cube.stl + rm -f bin_rectangle.stl + rm -f cube2.stl + rm -f cube.stl + rm -f different_names_0.stl + rm -f not-a-volume.stl.stl + rm -f part_0.9_1o.stl + rm -f part_0.9_2o.stl + rm -f part_1.1_1.stl + rm -f part_1.1_2.stl + rm -f part_1_1.stl + rm -f part_1_2.stl + rm -f rectangle.stl + rm -f sphere 1_0.stl + rm -f sphere 1.stl $(TEST_DEP): config.mk scad-local.pc @$(CC) $(CFLAGS_EXE) $(RSYS_CFLAGS) $(SCAD_CFLAGS) \