# $Id: Makefile.threadrun,v 1.1 2004/01/03 18:52:18 rkufrin Exp $

CC	= gcc
CFLAGS	= -O3 -g
LIBS	= -lpthread

threadrun: threadrun.o
	$(CC) -o $@ threadrun.o $(LIBS)

threadrun.o: threadrun.c
	$(CC) -c $(CFLAGS) threadrun.c

clean:
	/bin/rm -f *.o core threadrun *.xml
