diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-04-21 03:10:19 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-04-21 03:10:19 -0400 |
commit | d1ac46b53ec182fec1397ccd651a699551a99970 (patch) | |
tree | d3dcc20f05d22140d49429720474e90af5369fd9 /Makefile | |
parent | a4c93ce43a942be7f92248cb1ef3a1d3313bce5e (diff) |
initial pass at converting PEM-encoded private keys into OpenPGP public keys.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,9 @@ monkeysphere: main.c gnutls-helpers.o gpg2ssh: gpg2ssh.c gnutls-helpers.o gcc -g -Wall --pedantic -o gpg2ssh gpg2ssh.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o +ssh2gpg: ssh2gpg.c gnutls-helpers.o + gcc -g -Wall --pedantic -o ssh2gpg ssh2gpg.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o + %.o: %.c gcc -g -Wall --pedantic -o $@ -c $< |