CC=gcc
CFLAGS=-W -Wall -Wextra -Wno-unused
all:
	$(CC) $(CFLAGS) -pthread arraysum.c -o arraysum

clean:
	rm -f arraysum
