1
0
Fork 0
dwelling-upload/Makefile

53 lines
1.6 KiB
Makefile
Raw Normal View History

2022-02-06 02:22:23 +04:00
TARGET=dwelling-upload
SYSCTL=${shell which systemctl}
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR=${SYSDDIR_:/%=%}
DESTDIR=/
LDFLAGS=-ldflags "-s -w" -tags osusergo,netgo
2022-02-06 02:22:23 +04:00
all: ${TARGET}
.PHONY: ${TARGET}
${TARGET}:
go generate web/web.go
2022-02-06 02:22:23 +04:00
go build -o bin/$@ ${LDFLAGS} cmd/$@/main.go
go build -o bin/$@-clean ${LDFLAGS} cmd/$@-clean/main.go
2022-02-06 02:22:23 +04:00
install-jade:
go install github.com/Joker/jade/cmd/jade@latest
2022-02-06 02:22:23 +04:00
run:
2022-02-06 15:22:14 +04:00
bin/${TARGET} -conf configs/config.yaml
2022-02-06 02:22:23 +04:00
run-clean:
bin/${TARGET}-clean -conf configs/config.yaml
2022-02-08 23:59:24 +04:00
2022-02-06 02:22:23 +04:00
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
install -Dm 0755 bin/${TARGET}-clean ${DESTDIR}usr/bin/${TARGET}-clean
2022-02-17 02:37:37 +04:00
install -Dm 0644 configs/config.yaml ${DESTDIR}etc/dwelling/upload.yaml
install -Dm 0644 configs/logrotate ${DESTDIR}etc/logrotate.d/${TARGET}
2022-02-06 02:22:23 +04:00
install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
install -Dm 0644 init/systemd/${TARGET}.service ${DESTDIR}${SYSDDIR}/${TARGET}.service
install -Dm 0644 init/systemd/${TARGET}-clean.timer ${DESTDIR}${SYSDDIR}/${TARGET}-clean.timer
install -Dm 0644 init/systemd/${TARGET}-clean.service ${DESTDIR}${SYSDDIR}/${TARGET}-clean.service
2022-02-06 02:22:23 +04:00
install -Dm 0644 build/dwelling-upload.conf ${DESTDIR}usr/lib/sysusers.d/dwelling-upload.conf
2022-02-06 02:22:23 +04:00
uninstall:
rm ${DESTDIR}usr/bin/${TARGET}
rm ${DESTDIR}usr/bin/${TARGET}-clean
rm ${DESTDIR}etc/logrotate.d/${TARGET}
2022-02-06 02:22:23 +04:00
rm ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
rm ${DESTDIR}${SYSDDIR}/${TARGET}-clean.timer
rm ${DESTDIR}${SYSDDIR}/${TARGET}-clean.service
2022-02-06 02:22:23 +04:00
clean:
go clean