TARGETS=stack
CPP=g++

all: $(TARGETS)

.cpp.o:
	$(CPP) -c $<

stack:		stack.o
		$(CPP) -o $@ $<

.PHONY:	clean

clean:
	rm -rf *.o stack
