Merge pull request #1459 from letsencrypt/ignore_testdata

ignore the cmd/testdata dir in the Makefile
This commit is contained in:
Jeff Hodges 2016-02-02 13:49:21 -08:00
commit 8237a133c4
1 changed files with 1 additions and 1 deletions

View File

@ -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)