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