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