Initial commit.

This commit is contained in:
2023-11-06 19:25:02 -08:00
commit 1d0d2b0851
3 changed files with 332 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
CC=clang
FLAGS=-Wall -Wextra -g
LIBS=-I/opt/homebrew/include -I/opt/homebrew/include/SDL2 -L/opt/homebrew/lib -lSDL2 -lSDL2_ttf
all: clean build
build: pingpong
pingpong: pingpong.c
${CC} ${FLAGS} ${LIBS} pingpong.c -o pingpong
clean:
rm -rf pingpong.dSYM pingpong
.PHONY: build clean