CC=gcc
CFLAGS=-W -Wall -Wextra -Wno-unused
all:
	$(CC) $(CFLAGS) -pthread returnval.c -o returnval

clean:
	rm -f returnval
