TAG = small-world

image: hello
	podman build  . --tag $(TAG)

run:
	@podman run -it --rm $(TAG)

hello: hello.c
	$(CC) -Wall -O2 --static -o hello hello.c

clean:
	rm -rf hello

clobber: clean
	podman image rm $(TAG)
