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