diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-16 10:05:26 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-16 10:05:26 -0700 |
commit | c5f7674a97e621bfab5544165098b4860ee6e247 (patch) | |
tree | 5653f607a0af70840636086cb3f7571f88ba0b76 /tools/Makefile | |
parent | fc7ef1e8ae8c19c06a4fa3d574c13d793e66186a (diff) | |
download | git-c5f7674a97e621bfab5544165098b4860ee6e247.tar.gz |
Prepare git-tools for merging into the main git archive
Rename into a "tools" subdirectory, and change name of "dotest" to "applymbox".
Remove stripspace (which was already copied into git) and cvs2git (which
was likewise already copied into git, and then replaced by a much better
perl version).
All of this was brought on by Ryan Anderson shaming me into it. Thanks.
I guess.
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000000..8e7252e592 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,14 @@ +CC=gcc +CFLAGS=-Wall -O2 +HOME=$(shell echo $$HOME) + +PROGRAMS=mailsplit mailinfo +SCRIPTS=applymbox applypatch + +all: $(PROGRAMS) + +install: $(PROGRAMS) $(SCRIPTS) + cp -f $(PROGRAMS) $(SCRIPTS) $(HOME)/bin/ + +clean: + rm -f $(PROGRAMS) *.o |