39fa5e0c5921124e6331c9008d918e27991f7c85
1all: git-credential-wincred.exe
2
3CC = gcc
4RM = rm -f
5CFLAGS = -O2 -Wall
6
7-include ../../../config.mak.autogen
8-include ../../../config.mak
9
10prefix ?= /usr/local
11libexecdir ?= $(prefix)/libexec/git-core
12
13INSTALL ?= install
14
15git-credential-wincred.exe : git-credential-wincred.c
16 $(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@
17
18install: git-credential-wincred.exe
19 $(INSTALL) -m 755 $^ $(libexecdir)
20
21clean:
22 $(RM) git-credential-wincred.exe