star-vx

Structuring voxels for ray-tracing
git clone git://git.meso-star.fr/star-vx.git
Log | Files | Refs | README | LICENSE

commit 0e740351dcfa0c962369a7b6d19b225b3481bf69
parent cb58ac9419c098988bba50f6a3dca97c219c32a5
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 27 Oct 2023 10:48:09 +0200

Delete libsvx.o when invoking make clean

This is the object file used to partially link the static library.

Diffstat:
MMakefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -107,7 +107,8 @@ uninstall: all: build_library build_tests clean: clean_test - rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME) .config .test svx.pc svx-local.pc + rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME) + rm -f .config .test libsvx.o svx.pc svx-local.pc distclean: clean rm -f $(DEP) $(TEST_DEP)