5 lines
67 B
Makefile
Raw Normal View History

2024-03-09 18:46:06 +01:00
CFLAGS = -Wall -Wextra -g -O3
vig: main.c
gcc $^ -o $@ $(CFLAGS)