28 lines
701 B
Makefile
28 lines
701 B
Makefile
TARGET=httpprocprobed
|
|
|
|
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
|
|
SYSDDIR=${SYSDDIR_:/%=%}
|
|
DESTDIR=/
|
|
|
|
LDFLAGS=-ldflags "-s -w" -tags netgo
|
|
|
|
SOURCES := ${wildcard *.go}
|
|
|
|
all: ${TARGET}
|
|
|
|
${TARGET}: ${SOURCES}
|
|
go build ${LDFLAGS}
|
|
|
|
install:
|
|
install -Dm 0755 ${TARGET} ${DESTDIR}usr/bin/${TARGET}
|
|
install -Dm 0644 configs/config.example.conf ${DESTDIR}etc/${TARGET}.conf
|
|
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:
|
|
go clean
|