CC = gcc all: test_iterator test_iterator: test_iterator.c my_iterator.c $(CC) -o $@ $? clean: rm -f *.o *~ core test_iterator