diff options
author | Matt Goins <mjgoins@openflows.com> | 2008-06-07 19:41:18 -0400 |
---|---|---|
committer | Matt Goins <mjgoins@openflows.com> | 2008-06-07 19:41:18 -0400 |
commit | b75cb97e42dd3327942d8b32cac2d9ee97e9aa4a (patch) | |
tree | 62d825324c9a34987d4cc957226f797d53881b3a | |
parent | c9b6d9a5b7b53766bc70f5dd381fb0db5769bd30 (diff) |
Added 'all' to makefile, and fixed 'clean'
-rw-r--r-- | gpg2ssh/Makefile | 4 |
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 |