From fd1fcd9f57406cd5f278adb6b3ceeb1b7637062a Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sat, 23 Jul 2005 18:46:27 -0700 Subject: [PATCH] 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. --- tools/Makefile | 7 +++++-- tools/{applymbox => git-applymbox} | 0 tools/{applypatch => git-applypatch} | 0 3 files changed, 5 insertions(+), 2 deletions(-) rename tools/{applymbox => git-applymbox} (100%) rename tools/{applypatch => git-applypatch} (100%) diff --git a/tools/Makefile b/tools/Makefile index 5c07cec0..a16b6679 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 -- 2.11.0