CFLAGS=-D_LINUX -D__i386__

all: t3

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

clean:
	rm -f *~ t3 *.o

