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

clean:
	rm -f freq-locking *~
