We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 780ded4 + 0e7afb1 commit 7ff38b0Copy full SHA for 7ff38b0
3 files changed
contrib/credential/gnome-keyring/.gitignore
@@ -0,0 +1 @@
1
+git-credential-gnome-keyring
contrib/credential/gnome-keyring/Makefile
@@ -0,0 +1,24 @@
+MAIN:=git-credential-gnome-keyring
2
+all:: $(MAIN)
3
+
4
+CC = gcc
5
+RM = rm -f
6
+CFLAGS = -g -O2 -Wall
7
8
+-include ../../../config.mak.autogen
9
+-include ../../../config.mak
10
11
+INCS:=$(shell pkg-config --cflags gnome-keyring-1)
12
+LIBS:=$(shell pkg-config --libs gnome-keyring-1)
13
14
+SRCS:=$(MAIN).c
15
+OBJS:=$(SRCS:.c=.o)
16
17
+%.o: %.c
18
+ $(CC) $(CFLAGS) $(CPPFLAGS) $(INCS) -o $@ -c $<
19
20
+$(MAIN): $(OBJS)
21
+ $(CC) -o $@ $(LDFLAGS) $^ $(LIBS)
22
23
+clean:
24
+ @$(RM) $(MAIN) $(OBJS)
0 commit comments