CFLAGS=-D_LINUX -D__i386__ 

all: t2

t2: t2.c
	gcc $(CFLAGS) -o t2 t2.c -lpthread

clean:
	rm -f *~ t2 *.o

