From: Matt Goins Date: Sat, 7 Jun 2008 23:41:18 +0000 (-0400) Subject: Added 'all' to makefile, and fixed 'clean' X-Git-Tag: monkeysphere_0.2-1~11^2 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=b75cb97e42dd3327942d8b32cac2d9ee97e9aa4a;p=monkeysphere.git Added 'all' to makefile, and fixed 'clean' --- 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