1
0
Fork 0
dwelling-home/Makefile

35 lines
821 B
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-03-11 22:47:02 +04:00
LDFLAGS=-ldflags "-s -w -X main.version=23.10.0" -tags osusergo,netgo
2023-01-16 05:24:07 +04:00
all: ${TARGET}
.PHONY: ${TARGET} install uninstall
2023-02-06 00:34:06 +04:00
gen:
2023-02-05 05:32:46 +04:00
go generate web/web.go
2023-02-06 00:34:06 +04:00
${TARGET}:
2023-01-16 05:24:07 +04:00
go build -o bin/$@ ${LDFLAGS} cmd/$@/main.go
run:
2023-02-06 00:34:06 +04:00
bin/${TARGET} -listen 127.0.0.1:18123 -db . -gb-owner Arav -gb-pagesz 10
2023-01-16 05:24:07 +04:00
install:
install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET}
install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
install -Dm 0644 init/systemd.service ${DESTDIR}${SYSDDIR}/${TARGET}.service
uninstall:
rm ${DESTDIR}usr/bin/${TARGET}
rm ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service
clean:
rm bin/${TARGET}
rm web/*.pug.go