summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-04-21 03:10:19 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-04-21 03:10:19 -0400
commitd1ac46b53ec182fec1397ccd651a699551a99970 (patch)
treed3dcc20f05d22140d49429720474e90af5369fd9 /Makefile
parenta4c93ce43a942be7f92248cb1ef3a1d3313bce5e (diff)
initial pass at converting PEM-encoded private keys into OpenPGP public keys.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4fb4556..aa18aaa 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<