mirror of
https://github.com/git/git.git
synced 2024-11-07 01:32:58 +01:00
3e91311ae7
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.
14 lines
249 B
Makefile
14 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
|