OBJ=hello_multi
CC=gcc -Wall -pedantic

all: $(OBJ).c
	$(CC) -lpthread -o $(OBJ) $(OBJ).c
