Skip to content

How to compile pkcs11 helper

Pascal J. Bourguignon edited this page Oct 30, 2018 · 2 revisions
#!/bin/bash -e
cd /usr/local/src/pkcs11-helper
git clean -dfx
libtoolize
autoreconf --install
aclocal
automake --add-missing
autoconf
CFLAGS='-I/usr/local/include' \
LDFLAGS='-L/usr/local/lib' \
./configure --prefix=/usr/local
make
make install

Note: to compile kermit, on a wide range of different systems, 
you just have to type `make $target` (eg. `make linux`).
Clone this wiki locally