summaryrefslogtreecommitdiff
path: root/gpg2ssh/Makefile
diff options
context:
space:
mode:
authorMatt Goins <mjgoins@openflows.com>2008-06-07 19:41:18 -0400
committerMatt Goins <mjgoins@openflows.com>2008-06-07 19:41:18 -0400
commitb75cb97e42dd3327942d8b32cac2d9ee97e9aa4a (patch)
tree62d825324c9a34987d4cc957226f797d53881b3a /gpg2ssh/Makefile
parentc9b6d9a5b7b53766bc70f5dd381fb0db5769bd30 (diff)
Added 'all' to makefile, and fixed 'clean'
Diffstat (limited to 'gpg2ssh/Makefile')
-rw-r--r--gpg2ssh/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/gpg2ssh/Makefile b/gpg2ssh/Makefile
index aa18aaa..1e816e2 100644
--- a/gpg2ssh/Makefile
+++ b/gpg2ssh/Makefile
@@ -1,3 +1,5 @@
+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
@@ -11,6 +13,6 @@ ssh2gpg: ssh2gpg.c gnutls-helpers.o
gcc -g -Wall --pedantic -o $@ -c $<
clean:
- rm -f monkeysphere *.o
+ rm -f monkeysphere *.o gpg2ssh ssh2gpg
.PHONY: clean