14 lines
369 B
Makefile
14 lines
369 B
Makefile
.PHONY: all build install
|
|
|
|
all: build
|
|
|
|
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
|
|
|
|
install: build
|
|
mkdir -p /usr/share/file-server/static
|
|
install -m755 -t /usr/share/file-server build/files-server
|
|
install -m755 -t /usr/share/file-server/static static/main.html
|