obj = hello.o

hello: $(obj)
	$(PC) -o main $(obj)
	./main > out
	cat out

clean:
	rm -f $(obj) main core*
