all:
	gcc -Wall -c pilha.c
	gcc -Wall pilha.o testapilha.c -o testa

clean:
	rm -rf *.o testa
