1
0
dwelling-radio/Makefile

48 lines
1.4 KiB
Makefile
Raw Normal View History

TARGET:=dwelling-radio
2022-03-08 01:17:24 +04:00
SYSDDIR_:=${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR:=${SYSDDIR_:/%=%}
2022-03-08 01:17:24 +04:00
DESTDIR:=
PREFIX:=/usr/local
2022-03-08 01:17:24 +04:00
2023-08-06 03:17:48 +04:00
VERSION=23.31.0
2023-05-02 17:38:10 +04:00
FLAGS:=-modcacherw -mod=readonly -trimpath
2023-05-02 17:38:10 +04:00
LDFLAGS:= -ldflags "-s -w -X main.version=${VERSION}" -tags osusergo,netgo
2022-03-08 01:17:24 +04:00
2023-05-27 00:35:27 +04:00
all: web/*.pug.go ${TARGET}
.PHONY: ${TARGET} install uninstall run
2022-03-08 01:17:24 +04:00
${TARGET}:
go build -o bin/$@ ${LDFLAGS} ${FLAGS} cmd/$@/main.go
2022-03-08 01:17:24 +04:00
2023-05-27 00:35:27 +04:00
web/*.pug.go: web/templates/*.pug
go install github.com/Joker/jade/cmd/jade@latest
go generate web/web.go
run:
bin/dwelling-radio -listen 127.0.0.1:18322 -mls-file ./mls-test -ic-playlist ./p.log
2022-03-08 01:17:24 +04:00
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET}
install -Dm 0755 tools/radioctl ${DESTDIR}${PREFIX}/bin/${TARGET}ctl
2023-03-13 04:38:03 +04:00
install -Dm 0644 configs/radio.liq ${DESTDIR}/etc/dwelling/radio.liq
2023-03-13 04:55:24 +04:00
install -Dm 0644 configs/radio.vars.liq ${DESTDIR}/etc/dwelling/radio.vars.liq
2023-03-13 04:38:03 +04:00
install -Dm 0644 configs/logrotate ${DESTDIR}/etc/logrotate.d/${TARGET}
2022-03-08 01:17:24 +04:00
install -Dm 0644 init/radio.service ${DESTDIR}/${SYSDDIR}/${TARGET}.service
install -Dm 0644 init/liquidsoap.service ${DESTDIR}/${SYSDDIR}/${TARGET}-liquidsoap.service
2022-03-08 01:17:24 +04:00
uninstall:
rm ${DESTDIR}${PREFIX}/bin/${TARGET}
rm ${DESTDIR}${PREFIX}/bin/${TARGET}ctl
2023-03-13 04:38:03 +04:00
rm ${DESTDIR}/etc/dwelling/radio.liq
rm ${DESTDIR}/etc/logrotate.d/${TARGET}
2022-03-08 01:17:24 +04:00
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
rm ${DESTDIR}${SYSDDIR}/${TARGET}-liquidsoap.service
clean:
rm -f web/*.jade.go
go clean