Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « wincred « credential « contrib - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bad45ca47a2379a9226da1ae886e23dff01ca8f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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