You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
850 B
35 lines
850 B
TARGET=httpprocwatchd |
|
|
|
SYSCTL=${shell which systemctl} |
|
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir} |
|
SYSDDIR=${SYSDDIR_:/%=%} |
|
DESTDIR=/ |
|
|
|
LDFLAGS=-ldflags "-s -w" |
|
|
|
SOURCES := ${wildcard *.go} |
|
|
|
all: ${TARGET} |
|
|
|
${TARGET}: ${SOURCES} |
|
go build ${LDFLAGS} |
|
|
|
install: |
|
install -Dm 0755 ${TARGET} ${DESTDIR}usr/bin/${TARGET} |
|
install -Dm 0644 contrib/config.example.conf ${DESTDIR}etc/${TARGET}/config.conf |
|
install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE |
|
|
|
install-service: |
|
install -Dm 0644 contrib/systemd/${TARGET}.service ${DESTDIR}${SYSDDIR}/${TARGET}.service |
|
|
|
uninstall: |
|
rm ${DESTDIR}usr/bin/${TARGET} |
|
rm ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE |
|
|
|
uninstall-service: |
|
${SYSCTL} stop ${TARGET}.service |
|
${SYSCTL} disable ${TARGET}.service |
|
rm ${DESTDIR}${SYSDDIR}/${TARGET}.service |
|
|
|
clean: |
|
go clean
|