agraph/Makefile

14 lines
232 B
Makefile
Raw Permalink Normal View History

2023-09-16 21:15:54 +02:00
INF := main.c
WRN := -Wall -Wextra
STD := -std=c99
OPT := -march=native -O2
LNK := -lm $(shell pkg-config --cflags --libs ncurses)
OUT := agraph
2023-03-11 02:13:19 +01:00
default:
2023-09-16 21:15:54 +02:00
$(CC) $(STD) $(WRN) $(OPT) $(INF) $(LNK) -o $(OUT)
clean:
rm -f ./$(out)