1
0
mirror of https://github.com/git/git.git synced 2024-10-07 02:11:19 +02:00
git/Makefile
Linus Torvalds 8c7b86632c Add "stripspace" program to clean up email commentary
Remove multiple empty lines, and empty lines at beginning and end.
2005-04-30 10:58:41 -07:00

15 lines
241 B
Makefile

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