.PHONY: all
all: hellostack

hellostack: hellostack.c
	gcc -g -o hellostack hellostack.c

.PHONY: clean
clean:
	rm -f hellostack

