Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions contrib/credential/libsecret/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ PKG_CONFIG = pkg-config
-include ../../../config.mak.autogen
-include ../../../config.mak

prefix ?= /usr/local
gitexecdir ?= $(prefix)/libexec/git-core

INCS:=$(shell $(PKG_CONFIG) --cflags libsecret-1 glib-2.0)
LIBS:=$(shell $(PKG_CONFIG) --libs libsecret-1 glib-2.0)

Expand All @@ -26,3 +29,7 @@ $(MAIN): $(OBJS)

clean:
@$(RM) $(MAIN) $(OBJS)

install: $(MAIN)
$(INSTALL) -d -m 755 $(DESTDIR)$(gitexecdir)
$(INSTALL) -m 755 $(MAIN) $(DESTDIR)$(gitexecdir)
Loading