small fix

This commit is contained in:
dedal.qq
2023-07-01 13:01:01 +03:00
parent d0344aff9e
commit 914d9d0b54
8 changed files with 54 additions and 44 deletions

View File

@ -1,4 +1,8 @@
.PHONY: build
all: build
build:
go build -o files-server
build: build/files-server
build/files-server: cmd/file-server/main.go internal/handler/*.go
go build -o build/files-server cmd/file-server/main.go