mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
c5f7674a97
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.
14 lines
233 B
Makefile
14 lines
233 B
Makefile
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
|