contrib / credential / osxkeychain / Makefileon commit conditional markdown preprocessing (c8b1cd9)
   1all:: git-credential-osxkeychain
   2
   3CC = gcc
   4RM = rm -f
   5CFLAGS = -g -O2 -Wall
   6
   7-include ../../../config.mak.autogen
   8-include ../../../config.mak
   9
  10git-credential-osxkeychain: git-credential-osxkeychain.o
  11        $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) -Wl,-framework -Wl,Security
  12
  13git-credential-osxkeychain.o: git-credential-osxkeychain.c
  14        $(CC) -c $(CFLAGS) $<
  15
  16clean:
  17        $(RM) git-credential-osxkeychain git-credential-osxkeychain.o