aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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}