blob: 75c07f8be4ae6ece8adb5c7190e4de38891f8787 [file] [log] [blame]
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