blob: 5b795fc9fe0cc8ee356a27d43e2659aff9b6f217 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# The default target of this Makefile is...
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
|