mirror of
https://github.com/git/git.git
synced 2024-11-07 09:43:00 +01:00
15 lines
328 B
Makefile
15 lines
328 B
Makefile
|
all:: git-credential-osxkeychain
|
||
|
|
||
|
CC = gcc
|
||
|
RM = rm -f
|
||
|
CFLAGS = -g -Wall
|
||
|
|
||
|
git-credential-osxkeychain: git-credential-osxkeychain.o
|
||
|
$(CC) -o $@ $< -Wl,-framework -Wl,Security
|
||
|
|
||
|
git-credential-osxkeychain.o: git-credential-osxkeychain.c
|
||
|
$(CC) -c $(CFLAGS) $<
|
||
|
|
||
|
clean:
|
||
|
$(RM) git-credential-osxkeychain git-credential-osxkeychain.o
|