From: Linus Torvalds Date: Sun, 24 Jul 2005 01:46:27 +0000 (-0700) Subject: Rename the "tools" programs to also have the "git-" prefix X-Git-Tag: v0.99.2~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fd1fcd9f57406cd5f278adb6b3ceeb1b7637062a;p=git.git Rename the "tools" programs to also have the "git-" prefix Hey, people are using them, and we have an install target for them, so make sure that we can actually install them sanely without disturbing the namespace. --- diff --git a/tools/Makefile b/tools/Makefile index 5c07cec0e..a16b66796 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -10,8 +10,11 @@ prefix=$(HOME) bin=$(prefix)/bin # dest= -PROGRAMS=mailsplit mailinfo -SCRIPTS=applymbox applypatch +PROGRAMS=git-mailsplit git-mailinfo +SCRIPTS=git-applymbox git-applypatch + +git-%: %.c + $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) all: $(PROGRAMS) diff --git a/tools/applymbox b/tools/git-applymbox similarity index 100% rename from tools/applymbox rename to tools/git-applymbox diff --git a/tools/applypatch b/tools/git-applypatch similarity index 100% rename from tools/applypatch rename to tools/git-applypatch