1
0
mirror of https://github.com/git/git.git synced 2024-10-07 08:01:35 +02:00
git/Makefile
Linus Torvalds 3e91311ae7 Add "cvs2git" program to convert a CVS archive into a GIT archive
It's very hacky, and it needs lots of work, but it seems to have converted
Peter's "syslinux" archive successfully. Whether the end result is correct
or not is to be seen.

Tons of work still to do: do name conversion properly, and do tags etc.

And testing. Lots of testing.
2005-05-24 01:07:31 -07:00

15 lines
249 B
Makefile

CC=gcc
CFLAGS=-Wall -O2
HOME=$(shell echo $$HOME)
PROGRAMS=mailsplit mailinfo stripspace cvs2git
SCRIPTS=dotest applypatch
all: $(PROGRAMS)
install: $(PROGRAMS) $(SCRIPTS)
cp -f $(PROGRAMS) $(SCRIPTS) $(HOME)/bin/
clean:
rm -f $(PROGRAMS) *.o