CC=clang
CFLAGS=-Wall -Os -ffast-math -march=rocketlake -mtune=znver4

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

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