X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gpg2ssh%2FMakefile;h=a0b72418cdcbcaaa21f965630eaa261c18b35b30;hb=ec76b3cef0014c6aa68ec8982101892c74958b99;hp=aa18aaad5a2e096e9456008fcafc41f65d45bb64;hpb=c9b6d9a5b7b53766bc70f5dd381fb0db5769bd30;p=monkeysphere.git 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