all : IUT IUT : main.o gcc -o $@ $^ main.o : main.c gcc -Wall -c -o $@ $< clean : rm -f IUT *.o