1
0
mirror of https://github.com/git/git.git synced 2024-10-07 08:01:35 +02:00
git/Makefile
Linus Torvalds 853916ff7f Add "applypatch" and "dotest" scripts to tie it all together.
This should be getting it all pretty close to a working setup.
2005-04-12 01:40:20 -07:00

15 lines
230 B
Makefile

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