aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGibheer <gibheer+git@zero-knowledge.org>2019-03-13 14:29:50 +0100
committerGibheer <gibheer+git@zero-knowledge.org>2019-03-13 14:29:50 +0100
commite5ac5a4e533cc4d741a6fe593dd3aa4e368f3c77 (patch)
treec6888d42dc008c92d355cc2519caf8c07499c7eb /Makefile
parent361ca94ca3ffc60f5f633bd2071b1b598c1c42ff (diff)
move monfront to separate repository
Monfront was forked into its own repository to make it easier to work on.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2a41f7f..f06f270 100644
--- a/Makefile
+++ b/Makefile
@@ -25,17 +25,14 @@ clean:
build: clean
mkdir -p ${WRKDIR}
GOOS=${GOOS} go build -ldflags="${LDFLAGS}" -o ${WRKDIR}/moncheck ${PKGNAME}/cmd/moncheck
- GOOS=${GOOS} go build -ldflags="${LDFLAGS}" -o ${WRKDIR}/monfront ${PKGNAME}/cmd/monfront
GOOS=${GOOS} go build -ldflags="${LDFLAGS}" -o ${WRKDIR}/monwork ${PKGNAME}/cmd/monwork
install: build
install -d -m 0755 ${DESTDIR}${bindir}
install -d -m 0755 ${DESTDIR}${sysconfdir}
install -m 0755 ${WRKDIR}/moncheck ${DESTDIR}${bindir}
- install -m 0755 ${WRKDIR}/monfront ${DESTDIR}${bindir}
install -m 0755 ${WRKDIR}/monwork ${DESTDIR}${bindir}
install -m 0644 moncheck.conf.example ${DESTDIR}${sysconfdir}
- install -m 0644 monfront.conf.example ${DESTDIR}${sysconfdir}
install -m 0644 monwork.conf.example ${DESTDIR}${sysconfdir}
package: DESTDIR = ${NAME}-${VERSION}