loader_aw

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

commit 4cf2d6a3cf3c15f09ec707cc75229a793c09f451
parent e66e856d32f5c214eeb3eb2d5778e514986ef91c
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 19 Jul 2023 09:29:29 +0200

Update the Makefile target of the tests

The tests depend on the linker flags set in the config.mk file. This
dependency is not really necessary since these executables depend on
their object file which themselves depend on the config.mk file. So in
any case, their linking would be redone even without this change which
in all rigor remains necessary

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

diff --git a/Makefile b/Makefile @@ -143,5 +143,5 @@ $(TEST_OBJ): test_aw \ test_aw_mtl \ test_aw_obj \ -: aw-local.pc +: config.mk aw-local.pc $(CC) -o $@ src/$@.o $(LDFLAGS) $(AW_LIBS) $(RSYS_LIBS)