1
0
dwelling-radio/Makefile

39 lines
1.2 KiB
Makefile
Raw Normal View History

2022-03-08 01:17:24 +04:00
TARGET=dwelling-radio
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR=${SYSDDIR_:/%=%}
DESTDIR=/
2023-03-13 01:54:55 +04:00
LDFLAGS=-ldflags "-s -w -X main.version=23.10.1" -tags osusergo,netgo
2022-03-08 01:17:24 +04:00
all: ${TARGET}
.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
install-jade:
go install github.com/Joker/jade/cmd/jade@latest
run:
bin/dwelling-radio -no-liquidsoap -conf configs/config.test.yaml
2022-03-08 01:17:24 +04:00
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
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
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
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
rm ${DESTDIR}etc/logrotate.d/${TARGET}
2022-03-08 01:17:24 +04:00
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service