Skip to content
Snippets Groups Projects
Commit 5fff7191 authored by Bensong Liu's avatar Bensong Liu
Browse files

update rlib version

parent c775d256
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ I encrypt the `keyring-name : password` pair with GnuPG and save it as `secret-f
First, build the project from source.
```
git clone https://github.com/recolic/gnome-keyring-yubikey-unlock
git clone https://github.com/recolic/gnome-keyring-yubikey-unlock --recursive
cd gnome-keyring-yubikey-unlock/src && make && cd ..
```
......
CXX ?= g++
CXXFLAGS := $(shell pkg-config --cflags --libs gnome-keyring-1) -I ./lib -I .
# Accepts CXXSTD >= C++14
CXXFLAGS := $(shell pkg-config --cflags --libs gnome-keyring-1) -I ./lib -I . -std=c++14
EXTRA_FLAGS ?=
secret: rlib
$(CXX) $(CXXFLAGS) $(EXTRA_FLAGS) unlock_keyrings.cc ./lib/rlib/libr.a -o ../bin/unlock_keyrings
rlib:
cd ./lib/rlib && make
secret:
mkdir -p ../bin/
$(CXX) $(CXXFLAGS) $(EXTRA_FLAGS) unlock_keyrings.cc -o ../bin/unlock_keyrings
Subproject commit 12a6021287bf8f9a6adcf83f944a273d57a2f9d3
Subproject commit 097d76f0ac43324a641857ae607c74f236363da5
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment