.PHONY: clean
a.out: lista.o zad.o
	gcc lista.o zad.o
zad.o: zad.c
	gcc -c zad.c
lista.o: lista.c
	gcc -c lista.c
clean:
	rm *.o a.out