Skip to content

Commit

Permalink
makefile: add TAGS target
Browse files Browse the repository at this point in the history
  • Loading branch information
mofaph committed Sep 10, 2013
1 parent 58fd023 commit c72c655
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@ doc:
test:
cd test && $(MAKE)

TAGS:
find . -type f -name "*.[ch]" | xargs etags -

clean:
cd src && $(MAKE) $@
cd test && $(MAKE) $@
cd doc && $(MAKE) $@
rm -f TAGS

distclean: clean

dummy:

.PHONY: doc install test
.PHONY: doc install test TAGS

0 comments on commit c72c655

Please sign in to comment.