.PHONY: all
all: helloxmas

helloxmas: helloxmas.cpp
	g++ -g -o helloxmas helloxmas.cpp

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

