Merge pull request #1459 from letsencrypt/ignore_testdata
ignore the cmd/testdata dir in the Makefile
This commit is contained in:
commit
8237a133c4
2
Makefile
2
Makefile
|
|
@ -9,7 +9,7 @@ VERSION ?= 1.0.0
|
|||
EPOCH ?= 1
|
||||
MAINTAINER ?= "Community"
|
||||
|
||||
CMDS = $(shell find ./cmd -maxdepth 1 -mindepth 1 -type d)
|
||||
CMDS = $(shell find ./cmd -maxdepth 1 -mindepth 1 -type d | grep -v testdata)
|
||||
CMD_BASENAMES = $(shell echo $(CMDS) | xargs -n1 basename)
|
||||
CMD_BINS = $(addprefix $(OBJDIR)/, $(CMD_BASENAMES) )
|
||||
OBJECTS = $(CMD_BINS)
|
||||
|
|
|
|||
Loading…
Reference in New Issue