1
0
dwelling-radio/Makefile

32 lines
1.0 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-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}
.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:
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
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
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}etc/logrotate.d/${TARGET}
2022-03-08 01:17:24 +04:00
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service