diff options
author | Gibheer <gibheer+git@zero-knowledge.org> | 2019-03-13 14:29:50 +0100 |
---|---|---|
committer | Gibheer <gibheer+git@zero-knowledge.org> | 2019-03-13 14:29:50 +0100 |
commit | e5ac5a4e533cc4d741a6fe593dd3aa4e368f3c77 (patch) | |
tree | c6888d42dc008c92d355cc2519caf8c07499c7eb /Makefile | |
parent | 361ca94ca3ffc60f5f633bd2071b1b598c1c42ff (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-- | 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} |