added back the coap service
Signed-off-by: Jovan Kostovski <chombium@gmail.com> Signed-off-by: Jovan Kostovski <chombium@gmail.com>
This commit is contained in:
parent
b4a51ae0a2
commit
3072d054ee
8
Makefile
8
Makefile
|
@ -1,7 +1,7 @@
|
|||
BUILD_DIR=build
|
||||
|
||||
all: manager http writer
|
||||
.PHONY: all manager http writer
|
||||
all: manager http writer coap
|
||||
.PHONY: all manager http writer coap
|
||||
|
||||
manager:
|
||||
go build -o ${BUILD_DIR}/mainflux-manager cmd/manager/main.go
|
||||
|
@ -12,6 +12,10 @@ http:
|
|||
writer:
|
||||
go build -o ${BUILD_DIR}/mainflux-writer cmd/writer/main.go
|
||||
|
||||
coap:
|
||||
go build -o ${BUILD_DIR}/mainflux-coap cmd/coap/main.go
|
||||
|
||||
|
||||
clean:
|
||||
rm -rf ${BUILD_DIR}
|
||||
|
||||
|
|
Loading…
Reference in New Issue