all: \
	metadata \
	vrt

metadata: cmd/metadata/*.go
	go build -o $@ $^

vrt: cmd/vrt/*.go ../internal/util/*.go
	go build -o $@ $<
