3 lines
95 B
Makefile
3 lines
95 B
Makefile
build:
|
|
mkdir -p bin
|
|
gcc -O3 -o bin/cargon $(shell find src -name '*.c') -Wall -Wextra -Werror
|