loader_aw

Load OBJ/MTL file formats
git clone git://git.meso-star.fr/loader_aw.git
Log | Files | Refs | README | LICENSE

commit 84acb8b06766072bac001c662f24ec163276bf69
parent 9569f93a9f027354f1d7cde0f8a1c5e8d921b554
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 19 Jul 2023 08:51:47 +0200

Fix clean Makefile target

The library to be deleted was supposed to be the shared library while it
could be the static library. Also, the local pkg-config file generated
for testing was not being deleted when it should be.

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

diff --git a/Makefile b/Makefile @@ -96,7 +96,7 @@ uninstall: all: build_library build_tests clean: clean_test - rm -f $(OBJ) $(TEST_OBJ) libaw.so .test aw.pc .config + rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME) .config .test aw.pc aw-local.pc distclean: clean rm -f $(DEP) $(TEST_DEP)