We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4975ec3 commit f77649dCopy full SHA for f77649d
contrib/credential/libsecret/Makefile
@@ -12,6 +12,9 @@ PKG_CONFIG = pkg-config
12
-include ../../../config.mak.autogen
13
-include ../../../config.mak
14
15
+prefix ?= /usr/local
16
+gitexecdir ?= $(prefix)/libexec/git-core
17
+
18
INCS:=$(shell $(PKG_CONFIG) --cflags libsecret-1 glib-2.0)
19
LIBS:=$(shell $(PKG_CONFIG) --libs libsecret-1 glib-2.0)
20
@@ -26,3 +29,7 @@ $(MAIN): $(OBJS)
26
29
27
30
clean:
28
31
@$(RM) $(MAIN) $(OBJS)
32
33
+install: $(MAIN)
34
+ $(INSTALL) -d -m 755 $(DESTDIR)$(gitexecdir)
35
+ $(INSTALL) -m 755 $(MAIN) $(DESTDIR)$(gitexecdir)
0 commit comments