TARGET=pthread

all:
	gcc $(TARGET).c -o $(TARGET) -lpthread

clean:
	rm -f *~ *.o $(TARGET)
