summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-06-12 10:30:05 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-06-12 10:30:05 -0400
commite4ce2240a682a57680e3d4d2d07757e631887d33 (patch)
tree1dc26ec55f16a9428d721144d6b53cbe2a72e29b /src
parentba14c70659e154c3af63e1ee2480a6a75b7ac0e5 (diff)
added ssh2gpg to Makefile
Diffstat (limited to 'src')
-rw-r--r--src/gpg2ssh/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpg2ssh/Makefile b/src/gpg2ssh/Makefile
index a0b7241..65a5f0f 100644
--- a/src/gpg2ssh/Makefile
+++ b/src/gpg2ssh/Makefile
@@ -1,4 +1,4 @@
-all: monkeysphere gpg2ssh
+all: monkeysphere gpg2ssh ssh2gpg
monkeysphere: main.c gnutls-helpers.o
gcc -g -Wall --pedantic -o monkeysphere main.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o
@@ -13,6 +13,6 @@ ssh2gpg: ssh2gpg.c gnutls-helpers.o
gcc -g -Wall --pedantic -o $@ -c $<
clean:
- rm -f monkeysphere gpg2ssh *.o
+ rm -f monkeysphere gpg2ssh ssh2gpg *.o
.PHONY: clean all