soundpong

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/soundpong
Log | Files | Refs

commit 55b1b20d200a9f01c8c41d8f28d1ddf2df390788
parent f7bdfb428aa0fb97176fc5a414bdb0d3cf76ead3
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Thu,  7 Oct 2021 20:29:35 -0500

remove sdl2_gfx dependency

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

diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ SRC = main.c SDL2_gfxPrimitives.c SDL2_rotozoom.c OBJ = $(SRC:%.c=%.o) EXE = pong -LIBS = -lSDL2 -lm -lfluidsynth -lSDL2_gfx +LIBS = -lSDL2 -lm -lfluidsynth all: $(OBJ) $(CC) -g -o $(EXE) $(OBJ) $(LIBS)