1
0
Fork 0
dwelling-home/Makefile

42 lines
1.4 KiB
Makefile
Executable File

TARGET=dwelling-home
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR=${SYSDDIR_:/%=%}
DESTDIR:=
VERSION=23.38.0
FLAGS:=-buildmode=pie -modcacherw -mod=readonly -trimpath
LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}" -tags osusergo,netgo
.PHONY: run install uninstall clean
${TARGET}: web/*.pug.go
go build -o bin/$@ ${LDFLAGS} ${FLAGS} cmd/$@/main.go
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
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET}
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
uninstall:
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