CC=gcc
CFLAGS=-W -Wall -Wextra
all:
	$(CC) $(CFLAGS) -pthread locked-array.c -o locked-array 

clean:
	rm -f locked-array *~
