Skip to content

Commit

Permalink
Makefile: Add TAGS and tags targets
Browse files Browse the repository at this point in the history
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Fredrik Kuivinen authored and Junio C Hamano committed Mar 18, 2006
1 parent 451d7b4 commit f81e7c6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,13 @@ $(LIB_FILE): $(LIB_OBJS)
doc:
$(MAKE) -C Documentation all

TAGS:
rm -f TAGS
find . -name '*.[hcS]' -print | xargs etags -a

tags:
rm -f tags
find . -name '*.[hcS]' -print | xargs ctags -a

### Testing rules

Expand Down Expand Up @@ -617,7 +624,7 @@ rpm: dist
clean:
rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE)
rm -f $(ALL_PROGRAMS) git$X
rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h
rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
rm -rf $(GIT_TARNAME)
rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
$(MAKE) -C Documentation/ clean
Expand All @@ -626,5 +633,5 @@ clean:
rm -f GIT-VERSION-FILE

.PHONY: all install clean strip
.PHONY: .FORCE-GIT-VERSION-FILE
.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags

0 comments on commit f81e7c6

Please sign in to comment.