1
0
dwelling-radio/Makefile

36 lines
918 B
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=/
2022-08-02 02:54:47 +04:00
LDFLAGS=-ldflags "-s -w -X main.version=22.31.0"
2022-03-08 01:17:24 +04:00
all: ${TARGET}
2022-05-24 18:47:00 +04:00
.PHONY: ${TARGET} run install uninstall clean
2022-03-08 01:17:24 +04:00
${TARGET}:
go build -o bin/$@ ${LDFLAGS} cmd/$@/main.go
run:
bin/${TARGET} -conf configs/config.yaml
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
install -Dm 0644 configs/config.yaml ${DESTDIR}etc/dwelling/radio.yaml
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
clean:
go clean