.PHONY: clean

a.out: lista.o zad.o
	gcc lista.o zad.o

lista.o: lista.c
	gcc -c lista.c

zad.o: zad.c
	gcc -c zad.c

clean:
	rm *.o ./a.out