
OBJS = iotest.o 
FLAGS =  -g

test:	$(OBJS)
	gcc -o test $(FLAGS) $(OBJS)

iotest.o:	iotest.c
	gcc -c iotest.c

clean:	
	rm *.o
