31 lines
761 B
Makefile
Executable File
31 lines
761 B
Makefile
Executable File
TARGET=dwelling-files
|
|
|
|
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
|
|
SYSDDIR=${SYSDDIR_:/%=%}
|
|
DESTDIR=/
|
|
|
|
LDFLAGS=-ldflags "-s -w -X main.version=23.8.0" -tags osusergo,netgo
|
|
|
|
all: ${TARGET}
|
|
|
|
.PHONY: ${TARGET}
|
|
|
|
${TARGET}:
|
|
go generate web/web.go
|
|
go build -o bin/$@ ${LDFLAGS} cmd/$@/main.go
|
|
|
|
run:
|
|
bin/${TARGET} -file-handling -path /mnt/data -listen 127.0.0.1:19135
|
|
|
|
install:
|
|
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
|
|
install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
|
|
|
|
install -Dm 0644 init/systemd/${TARGET}.service ${DESTDIR}${SYSDDIR}/${TARGET}.service
|
|
|
|
uninstall:
|
|
rm ${DESTDIR}usr/bin/${TARGET}
|
|
rm ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
|
|
|
|
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
|