build:
	$(CC) -o main thread-test.c -O3 -pthread

clean:
	rm -f main

.PHONY: build clean
