Files
pmomusic/Makefile

12 lines
137 B
Makefile
Raw Normal View History

2025-06-08 13:25:01 +02:00
APP_NAME=pmomusic
build:
go build -o bin/$(APP_NAME) ./cmd/$(APP_NAME)
run:
go run ./cmd/$(APP_NAME)
clean:
rm -rf bin/
all: build