.PHONY: all
all: helloskip

helloskip: helloskip.cpp
	g++ -g -o helloskip helloskip.cpp

.PHONY: clean
clean:
	rm -f helloskip helloskip.o

