7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
17 lines
420 B
Makefile
17 lines
420 B
Makefile
all:: git-credential-osxkeychain
|
|
|
|
CC = gcc
|
|
RM = rm -f
|
|
CFLAGS = -g -O2 -Wall
|
|
|
|
-include ../../../config.mak.autogen
|
|
-include ../../../config.mak
|
|
|
|
git-credential-osxkeychain: git-credential-osxkeychain.o
|
|
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) -Wl,-framework -Wl,Security
|
|
|
|
git-credential-osxkeychain.o: git-credential-osxkeychain.c
|
|
$(CC) -c $(CFLAGS) $<
|
|
|
|
clean:
|
|
$(RM) git-credential-osxkeychain git-credential-osxkeychain.o
|