1
0
mirror of https://github.com/git/git.git synced 2024-10-07 05:41:23 +02:00
git/Makefile

15 lines
249 B
Makefile
Raw Normal View History

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