Merged pull request #81 from influxdata/nc-transpilerd-make
chore(cmd/transpilerd): Add transpilerd to the Makefilepull/10616/head
commit
bc4d9aface
|
@ -11,4 +11,5 @@ idpdb.bolt
|
||||||
/influx
|
/influx
|
||||||
/idpd
|
/idpd
|
||||||
/ifqld
|
/ifqld
|
||||||
|
/transpilerd
|
||||||
/bin
|
/bin
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -26,7 +26,7 @@ SOURCES := $(shell find . -name '*.go' -not -name '*_test.go')
|
||||||
SOURCES_NO_VENDOR := $(shell find . -path ./vendor -prune -o -name "*.go" -not -name '*_test.go' -print)
|
SOURCES_NO_VENDOR := $(shell find . -path ./vendor -prune -o -name "*.go" -not -name '*_test.go' -print)
|
||||||
|
|
||||||
# List of binary cmds to build
|
# List of binary cmds to build
|
||||||
CMDS := bin/influx bin/idpd bin/ifqld
|
CMDS := bin/influx bin/idpd bin/ifqld bin/transpilerd
|
||||||
|
|
||||||
# List of utilities to build as part of the build process
|
# List of utilities to build as part of the build process
|
||||||
UTILS := bin/pigeon bin/cmpgen bin/goreleaser
|
UTILS := bin/pigeon bin/cmpgen bin/goreleaser
|
||||||
|
@ -55,6 +55,8 @@ bin/influx: $(SOURCES)
|
||||||
bin/idpd: $(SOURCES)
|
bin/idpd: $(SOURCES)
|
||||||
$(GO_BUILD) -i -o bin/idpd ./cmd/idpd
|
$(GO_BUILD) -i -o bin/idpd ./cmd/idpd
|
||||||
|
|
||||||
|
bin/transpilerd: $(SOURCES)
|
||||||
|
$(GO_BUILD) -i -o bin/transpilerd ./cmd/transpilerd
|
||||||
#
|
#
|
||||||
# Define targets for utilities
|
# Define targets for utilities
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue