CFLAGS=-D_LINUX -D__i386__ -D_PRINT

all: t1

t1: t1.c
	gcc $(CFLAGS) -o t1 t1.c

clean:
	rm -f *~ t1 *.o

