mirror of
https://github.com/git/git.git
synced 2024-11-07 09:43:00 +01:00
a6253da0f3
Since the Windows port of Git expects binary pipes, we need to make sure the helper-end also sets up binary pipes. Side-step CRLF-issue in test to make it pass. Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
14 lines
279 B
Makefile
14 lines
279 B
Makefile
all: git-credential-wincred.exe
|
|
|
|
CC = gcc
|
|
RM = rm -f
|
|
CFLAGS = -O2 -Wall
|
|
|
|
-include ../../../config.mak.autogen
|
|
-include ../../../config.mak
|
|
|
|
git-credential-wincred.exe : git-credential-wincred.c
|
|
$(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
|
|
|
clean:
|
|
$(RM) git-credential-wincred.exe
|