From 8988e8e63cb51eb5aa94fcce95f4cabe0c79a23c Mon Sep 17 00:00:00 2001 From: outfrost Date: Tue, 15 Jan 2019 14:58:05 +0100 Subject: [PATCH] Update Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0490851..9486be4 100644 --- a/Makefile +++ b/Makefile @@ -39,22 +39,22 @@ init : out # Build each compilation unit -out/main.o : main.c debugutil.h glut_janitor.h render.h level.h | out +out/main.o : main.c debugutil.h glut_janitor.h render.h level.h performance.h | out $(CC) $(compileargs) -c -o out/main.o main.c -out/debugutil.o : debugutil.c | out +out/debugutil.o : debugutil.c assimp_types.h | out $(CC) $(compileargs) -c -o out/debugutil.o debugutil.c out/glut_janitor.o : glut_janitor.c | out $(CC) $(compileargs) -c -o out/glut_janitor.o glut_janitor.c -out/render.o : render.c render.h typedefs.h | out +out/render.o : render.c render.h level.h typedefs.h performance.h | out $(CC) $(compileargs) -c -o out/render.o render.c out/tga.o : tga.c tga.h | out $(CC) $(compileargs) -c -o out/tga.o tga.c -out/level.o : level.c level.h tga.h | out +out/level.o : level.c level.h assimp_types.h tga.h | out $(CC) $(compileargs) -c -o out/level.o level.c out/performance.o : performance.c | out -- 2.44.0