1
0
dwelling-home/Makefile

42 lines
1.4 KiB
Makefile
Raw Normal View History

2023-01-16 05:24:07 +04:00
TARGET=dwelling-home
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR=${SYSDDIR_:/%=%}
DESTDIR:=
2023-01-16 05:24:07 +04:00
2023-09-23 04:04:01 +04:00
VERSION=23.38.0
FLAGS:=-buildmode=pie -modcacherw -mod=readonly -trimpath
LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}" -tags osusergo,netgo
2023-01-16 05:24:07 +04:00
.PHONY: run install uninstall clean
2023-01-16 05:24:07 +04:00
${TARGET}: web/*.pug.go
go build -o bin/$@ ${LDFLAGS} ${FLAGS} cmd/$@/main.go
2023-01-16 05:24:07 +04:00
web/*.pug.go: web/templates/*.pug
ifeq (,$(wildcard $(shell go env GOPATH)/bin/jade))
go install github.com/Joker/jade/cmd/jade@latest
endif
go generate web/web.go
run:
bin/${TARGET} -l 127.0.0.1:18123 -db . -ce 10m -gbo Arav -gbp 10
2023-01-16 05:24:07 +04:00
install:
2023-09-23 04:10:37 +04:00
install -Dm 0755 bin/${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET}
2023-01-16 05:24:07 +04:00
install -Dm 0644 init/systemd.service ${DESTDIR}${SYSDDIR}/${TARGET}.service
# install -Dm 0644 LICENSE ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE
# install -Dm 0644 LICENSE.RobotoCondensed.txt ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE.RobotoCondensed.txt
# install -Dm 0644 LICENSE.RobotoCondensed.txt ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE.ShareTechMono.txt
2023-01-16 05:24:07 +04:00
uninstall:
2023-09-23 04:10:37 +04:00
rm ${DESTDIR}${PREFIX}/bin/${TARGET}
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
# rm ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE
# rm ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE.RobotoCondensed.txt
# rm ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE.ShareTechMono.txt
clean:
rm -f bin/${TARGET}
rm -f web/*.pug.go web/jade.go