all: clean app

app:
	gcc client-example.c -lpthread -lm -lrt -o client-example

clean:
	rm -Rf client-example
