ohjelma: main.o tulostus.o luku.o
	gcc main.o tulostus.o luku.o -o ohjelma

main.o: main.c headerit.h
	gcc -c main.c 

tulostus.o: tulostus.c headerit.h
	gcc -c tulostus.c

luku.o: luku.c headerit.h
	gcc -c luku.c


clean:
	rm *.o

