6 lines
76 B
Makefile
6 lines
76 B
Makefile
all:
|
|
gcc -std=c11 -Wall -Wextra -Werror game.c -o game
|
|
|
|
clean:
|
|
rm -f game
|