Merge branch 'tu/credential-wincred-makefile-update'

Build procedure for Wincred credential helper has been updated.

* tu/credential-wincred-makefile-update:
  wincred: align Makefile with other Makefiles in contrib
main
Junio C Hamano 2025-11-12 08:17:30 -08:00
commit cb9036aca1
1 changed files with 10 additions and 8 deletions

View File

@ -4,20 +4,22 @@ all:: git-credential-wincred.exe
-include ../../../config.mak.autogen -include ../../../config.mak.autogen
-include ../../../config.mak -include ../../../config.mak


CC ?= gcc
RM ?= rm -f
CFLAGS ?= -O2 -Wall

prefix ?= /usr/local prefix ?= /usr/local
libexecdir ?= $(prefix)/libexec/git-core gitexecdir ?= $(prefix)/libexec/git-core


CC ?= gcc
CFLAGS ?= -O2 -Wall
INSTALL ?= install INSTALL ?= install
RM ?= rm -f


git-credential-wincred.exe : git-credential-wincred.c git-credential-wincred.exe: git-credential-wincred.c
$(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@ $(LINK.c) -o $@ $^ $(LDFLAGS) $(LDLIBS)


install: git-credential-wincred.exe install: git-credential-wincred.exe
$(INSTALL) -m 755 $^ $(libexecdir) $(INSTALL) -d -m 755 $(DESTDIR)$(gitexecdir)
$(INSTALL) -m 755 $< $(DESTDIR)$(gitexecdir)


clean: clean:
$(RM) git-credential-wincred.exe $(RM) git-credential-wincred.exe

.PHONY: all install clean