Merged pull request #81 from influxdata/nc-transpilerd-make

chore(cmd/transpilerd): Add transpilerd to the Makefile
pull/10616/head
Nathaniel Cook 2018-05-30 15:03:47 -06:00
commit bc4d9aface
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -11,4 +11,5 @@ idpdb.bolt
/influx
/idpd
/ifqld
/transpilerd
/bin

View File

@ -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)
# 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
UTILS := bin/pigeon bin/cmpgen bin/goreleaser
@ -55,6 +55,8 @@ bin/influx: $(SOURCES)
bin/idpd: $(SOURCES)
$(GO_BUILD) -i -o bin/idpd ./cmd/idpd
bin/transpilerd: $(SOURCES)
$(GO_BUILD) -i -o bin/transpilerd ./cmd/transpilerd
#
# Define targets for utilities
#