mirror of
https://github.com/git/git.git
synced 2024-11-07 17:53:12 +01:00
15 lines
279 B
Makefile
15 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
|