55 lines
1.6 KiB
Makefile
Executable File
55 lines
1.6 KiB
Makefile
Executable File
TARGET=dwelling-upload
|
|
|
|
SYSCTL=${shell which systemctl}
|
|
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
|
|
SYSDDIR=${SYSDDIR_:/%=%}
|
|
DESTDIR=/
|
|
|
|
VERSION=23.20.0
|
|
|
|
LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}" -tags osusergo,netgo
|
|
|
|
all: ${TARGET}
|
|
|
|
.PHONY: ${TARGET}
|
|
|
|
${TARGET}:
|
|
go generate web/web.go
|
|
go build -o bin/$@ ${LDFLAGS} cmd/$@/main.go
|
|
go build -o bin/$@-clean ${LDFLAGS} cmd/$@-clean/main.go
|
|
|
|
install-jade:
|
|
go install github.com/Joker/jade/cmd/jade@latest
|
|
|
|
run:
|
|
bin/${TARGET} -conf configs/config.yaml
|
|
|
|
run-clean:
|
|
bin/${TARGET}-clean -conf configs/config.yaml
|
|
|
|
install:
|
|
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
|
|
install -Dm 0755 bin/${TARGET}-clean ${DESTDIR}usr/bin/${TARGET}-clean
|
|
install -Dm 0644 configs/config.yaml ${DESTDIR}etc/dwelling/upload.yaml
|
|
install -Dm 0644 configs/logrotate ${DESTDIR}etc/logrotate.d/${TARGET}
|
|
|
|
install -Dm 0644 init/systemd/${TARGET}.service ${DESTDIR}${SYSDDIR}/${TARGET}.service
|
|
install -Dm 0644 init/systemd/${TARGET}-clean.timer ${DESTDIR}${SYSDDIR}/${TARGET}-clean.timer
|
|
install -Dm 0644 init/systemd/${TARGET}-clean.service ${DESTDIR}${SYSDDIR}/${TARGET}-clean.service
|
|
|
|
install -Dm 0644 build/dwelling-upload.conf ${DESTDIR}usr/lib/sysusers.d/dwelling-upload.conf
|
|
|
|
uninstall:
|
|
rm ${DESTDIR}usr/bin/${TARGET}
|
|
rm ${DESTDIR}usr/bin/${TARGET}-clean
|
|
rm ${DESTDIR}etc/logrotate.d/${TARGET}
|
|
|
|
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
|
|
rm ${DESTDIR}${SYSDDIR}/${TARGET}-clean.timer
|
|
rm ${DESTDIR}${SYSDDIR}/${TARGET}-clean.service
|
|
|
|
rm ${DESTDIR}usr/lib/sysusers.d/dwelling-upload.conf
|
|
|
|
clean:
|
|
go clean
|