all: barrier.c test.c test_fun.c affinity.c
	$(CC) $(CFLAGS) $(LDFLAGS) affinity.c barrier.c analyse.c test_fun.c test.c -o thread_test

clean:
	@rm -f *.o thread_test result.txt

PHONY: clean
