CFLAGS := --std c9x -pedantic -Wall -g

all: threads

threads: thread.c
    $(CC) -o $@ thread.c $(CFLAGS)

clean:
    rm -f threads