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.
This commit is contained in:
Linus Torvalds 2005-07-23 18:46:27 -07:00
parent c0a58fbb51
commit fd1fcd9f57
3 changed files with 5 additions and 2 deletions

View file

@ -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)