CC=clang
CFLAGS=-Wall -Os -ffast-math -march=tigerlake -mprefer-vector-width=512 -fno-tree-slp-vectorize # -mtune=znver4

%.o: %.c
	$(CC) $(CFLAGS) -c $<

%: %.o
	$(CC) -o $@ $< -lm
