CC=g++

.PHONY: all
all: hello
	
hello:
	$(CC) hello.cpp

clean:
	rm a.out
