2022-03-08 01:17:24 +04:00
|
|
|
TARGET=dwelling-radio
|
|
|
|
|
|
|
|
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
|
|
|
|
SYSDDIR=${SYSDDIR_:/%=%}
|
|
|
|
DESTDIR=/
|
|
|
|
|
2023-02-19 20:21:39 +04:00
|
|
|
LDFLAGS=-ldflags "-s -w -X main.version=23.7.0" -tags osusergo,netgo
|
2022-03-08 01:17:24 +04:00
|
|
|
|
|
|
|
all: ${TARGET}
|
|
|
|
|
2022-08-31 00:50:01 +04:00
|
|
|
.PHONY: ${TARGET} install uninstall
|
2022-03-08 01:17:24 +04:00
|
|
|
|
|
|
|
${TARGET}:
|
2023-02-07 03:17:16 +04:00
|
|
|
go generate web/web.go
|
2022-03-08 01:17:24 +04:00
|
|
|
go build -o bin/$@ ${LDFLAGS} cmd/$@/main.go
|
|
|
|
|
2023-02-19 20:22:41 +04:00
|
|
|
install-jade:
|
|
|
|
go install github.com/Joker/jade/cmd/jade@latest
|
|
|
|
|
2022-03-08 01:17:24 +04:00
|
|
|
install:
|
|
|
|
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
|
2023-02-19 20:22:41 +04:00
|
|
|
install -Dm 0755 tools/radioctl ${DESTDIR}usr/bin/${TARGET}ctl
|
2022-03-08 01:17:24 +04:00
|
|
|
install -Dm 0644 configs/config.yaml ${DESTDIR}etc/dwelling/radio.yaml
|
2022-08-29 07:19:59 +04:00
|
|
|
install -Dm 0644 configs/radio.liq ${DESTDIR}etc/dwelling/radio.liq
|
|
|
|
install -Dm 0644 configs/radio.vars.liq ${DESTDIR}etc/dwelling/radio.vars.liq
|
2022-03-08 01:17:24 +04:00
|
|
|
install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
|
2022-05-24 23:42:39 +04:00
|
|
|
install -Dm 0644 configs/logrotate ${DESTDIR}etc/logrotate.d/${TARGET}
|
2022-03-08 01:17:24 +04:00
|
|
|
|
2023-02-19 20:29:42 +04:00
|
|
|
install -Dm 0644 init/systemd.service ${DESTDIR}${SYSDDIR}/${TARGET}.service
|
2022-03-08 01:17:24 +04:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm ${DESTDIR}usr/bin/${TARGET}
|
|
|
|
rm ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
|
2022-05-24 23:42:39 +04:00
|
|
|
rm ${DESTDIR}etc/logrotate.d/${TARGET}
|
2022-03-08 01:17:24 +04:00
|
|
|
|
2022-08-31 00:50:01 +04:00
|
|
|
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
|