From 84e0a927f2b092d41dc804fa542220186345b7dd Mon Sep 17 00:00:00 2001 From: Luca Conte Date: Wed, 15 May 2024 13:53:45 +0200 Subject: [PATCH] test before building --- u07/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/u07/Makefile b/u07/Makefile index d0098bc..1ea898c 100644 --- a/u07/Makefile +++ b/u07/Makefile @@ -7,7 +7,8 @@ ALL_LIBS = $(GLEW_LIBS) $(GLFW_LIBS) $(OTHER_LIBS) OBJ = matrixMath.o transformation.o wavefrontobj.o SHADERS = fragmentShader.c vertexShader.c -cg1.out: main.o $(OBJ) $(SHADERS) +cg1.out: test.out main.o $(OBJ) $(SHADERS) + ./test.out gcc -o $@ main.o $(OBJ) $(ALL_LIBS) test.out: test.o $(OBJ)