diff options
author | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-06-07 19:39:59 -0400 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-06-07 19:39:59 -0400 |
commit | 241be7ab4a86d3d578de9b5499824a6e34bfd64c (patch) | |
tree | 0c946e843c50abb4eb5bb3ebf62d4c1472c7b1ff /gpg2ssh/Makefile | |
parent | f016e55c785648e0032c88c6eed872f663e81e39 (diff) | |
parent | ec76b3cef0014c6aa68ec8982101892c74958b99 (diff) |
Merge commit 'dkg/master'
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 |