This commit is contained in:
2023-01-11 14:57:19 -08:00
commit 91fd3c8abd
5 changed files with 138 additions and 0 deletions

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
CC_SDL=`sdl2-config --cflags --libs`
all:
cc *.c -o sdlamp -std=c11 $(CC_SDL)