ifeq ($(shell uname -s),Darwin)  # Mac.
CC = gcc-13
# To use actual GCC on Mac, please first install it.
else  # Linux
CC = gcc
endif

CFLAGS=-std=c99 -Wall -O3 -D_XOPEN_SOURCE

all: typesize floating_point memory aos soa quadratic_aos

clean:
	rm -f typesize floating_point memory aos soa quadratic_aos

