#
# Makefile.
#
# Mark Claypool, 2017
#

all: ts

ts: ts.c
	gcc ts.c -o ts -lpthread

clean:
	/bin/rm -f ts
	/bin/rm -f *~ core a.out
