diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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} |