From 3092e015a283d5165223b60724bd3ceb7b487086 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Thu, 9 Jan 2025 21:13:21 -0500 Subject: [PATCH] Fix makefile --- 01_text_adventure/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_text_adventure/Makefile b/01_text_adventure/Makefile index 484bdc7..4bcb07f 100644 --- a/01_text_adventure/Makefile +++ b/01_text_adventure/Makefile @@ -3,7 +3,7 @@ CFLAGS=-Wall -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 .PHONY: clean run -game: +game: *.c $(CC) *.c $(CFLAGS) -o game run: game