Browse Source

Merge branch 'master' into next

* master:
  Makefile: Add TAGS and tags targets
  ls-files: Don't require exclude files to end with a newline.
maint
Junio C Hamano 19 years ago
parent
commit
b7986ce884
  1. 11
      Makefile
  2. 3
      ls-files.c

11
Makefile

@ -553,6 +553,13 @@ $(LIB_FILE): $(LIB_OBJS)
doc: doc:
$(MAKE) -C Documentation all $(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 ### Testing rules


@ -617,7 +624,7 @@ rpm: dist
clean: clean:
rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE) rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE)
rm -f $(ALL_PROGRAMS) git$X 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 -rf $(GIT_TARNAME)
rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
$(MAKE) -C Documentation/ clean $(MAKE) -C Documentation/ clean
@ -626,5 +633,5 @@ clean:
rm -f GIT-VERSION-FILE rm -f GIT-VERSION-FILE


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



3
ls-files.c

@ -93,11 +93,12 @@ static int add_excludes_from_file_1(const char *fname,
close(fd); close(fd);
return 0; return 0;
} }
buf = xmalloc(size); buf = xmalloc(size+1);
if (read(fd, buf, size) != size) if (read(fd, buf, size) != size)
goto err; goto err;
close(fd); close(fd);


buf[size++] = '\n';
entry = buf; entry = buf;
for (i = 0; i < size; i++) { for (i = 0; i < size; i++) {
if (buf[i] == '\n') { if (buf[i] == '\n') {

Loading…
Cancel
Save