BINARY=open_volume

.PHONY: all build clean

all: build

build:
	go build -o $(BINARY) main.go

clean:
	rm -f $(BINARY)