You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
all: git-credential-wincred.exe
|
|
|
|
|
|
|
|
-include ../../../config.mak.autogen
|
|
|
|
-include ../../../config.mak
|
|
|
|
|
|
|
|
CC ?= gcc
|
|
|
|
RM ?= rm -f
|
|
|
|
CFLAGS ?= -O2 -Wall
|
|
|
|
|
|
|
|
prefix ?= /usr/local
|
|
|
|
libexecdir ?= $(prefix)/libexec/git-core
|
|
|
|
|
|
|
|
INSTALL ?= install
|
|
|
|
|
|
|
|
git-credential-wincred.exe : git-credential-wincred.c
|
|
|
|
$(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
|
|
|
|
|
|
|
install: git-credential-wincred.exe
|
|
|
|
$(INSTALL) -m 755 $^ $(libexecdir)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) git-credential-wincred.exe
|