mirror of
https://github.com/git/git.git
synced 2024-11-07 01:32:58 +01:00
8c7b86632c
Remove multiple empty lines, and empty lines at beginning and end.
14 lines
241 B
Makefile
14 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
|