1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-01 13:48:56 +08:00
Drasko DRASKOVIC 499b44fae2 Fix installation and remove coap from Makefile
Signed-off-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
2017-09-26 16:58:36 +02:00

23 lines
455 B
Makefile

BUILD_DIR=build
all: manager http normalizer writer
.PHONY: all manager http normalizer writer
manager:
go build -o ${BUILD_DIR}/mainflux-manager cmd/manager/main.go
http:
go build -o ${BUILD_DIR}/mainflux-http cmd/http/main.go
normalizer:
go build -o ${BUILD_DIR}/mainflux-normalizer cmd/normalizer/main.go
writer:
go build -o ${BUILD_DIR}/mainflux-writer cmd/writer/main.go
clean:
rm -rf ${BUILD_DIR}
install:
cp ${BUILD_DIR}/* $(GOBIN)