Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CFLAGS := -I . -I /usr/include/SDL2
UNAME := $(shell uname -s)

ifeq ($(UNAME),Darwin)
CFLAGS += -I /Library/Frameworks/SDL2.framework/Headers -F /Library/Frameworks/ -framework SDL2
CFLAGS += -I/opt/homebrew/include/SDL2 -D_THREAD_SAFE -L/opt/homebrew/lib -lSDL2
else
LDFLAGS := -lSDL2
endif
Expand Down