all: hello

hello: hello.c
	gcc -static-pie hello.c -o hello

clean:
	rm -f hello

distclean: clean
