diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-06-07 19:27:51 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-06-07 19:27:51 -0400 |
commit | ec76b3cef0014c6aa68ec8982101892c74958b99 (patch) | |
tree | 721eb4fc3a9169dba41c794f8445b0cb20c73079 /gpg2ssh/Makefile | |
parent | c9b6d9a5b7b53766bc70f5dd381fb0db5769bd30 (diff) |
updated gpg2ssh to properly check for data encryption and authentication.
Diffstat (limited to 'gpg2ssh/Makefile')
-rw-r--r-- | gpg2ssh/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gpg2ssh/Makefile b/gpg2ssh/Makefile index aa18aaa..a0b7241 100644 --- a/gpg2ssh/Makefile +++ b/gpg2ssh/Makefile @@ -1,3 +1,5 @@ +all: monkeysphere gpg2ssh + 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 gpg2ssh *.o -.PHONY: clean +.PHONY: clean all |