Skip to content

Commit

Permalink
Remove tags make target (#3249)
Browse files Browse the repository at this point in the history
We no longer have a `c` directory so the `tags` target is no longer needed.

Fixes #3248
  • Loading branch information
fin-ger authored and lukedirtwalker committed Oct 14, 2019
1 parent c865360 commit 174ba71
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions Makefile
@@ -1,14 +1,14 @@
.PHONY: all clean goenv gogen vendor mocks bazel gazelle setcap tags
.PHONY: all clean goenv gogen vendor mocks bazel gazelle setcap

BRACCEPT = bin/braccept

GAZELLE_MODE?=fix

all: tags bazel
all: bazel

clean:
bazel clean
rm -f bin/* tags
rm -f bin/*
if [ -e go/vendor ]; then rm -r go/vendor; fi

gogen:
Expand Down Expand Up @@ -39,6 +39,3 @@ gazelle:

setcap:
tools/setcap cap_net_admin,cap_net_raw+ep $(BRACCEPT)

tags:
which ctags >/dev/null 2>&1 || exit 0; git ls-files c | ctags -L -

0 comments on commit 174ba71

Please sign in to comment.