From ad6dc98e4a8b38ed1ae3972f948723a205306a7d Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sun, 25 May 2008 14:51:32 -0400 Subject: move gpg2ssh stuff into it's own subdirectory to reduce some cluter --- gpg2ssh/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 gpg2ssh/Makefile (limited to 'gpg2ssh/Makefile') diff --git a/gpg2ssh/Makefile b/gpg2ssh/Makefile new file mode 100644 index 0000000..aa18aaa --- /dev/null +++ b/gpg2ssh/Makefile @@ -0,0 +1,16 @@ +monkeysphere: main.c gnutls-helpers.o + gcc -g -Wall --pedantic -o monkeysphere main.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o + +gpg2ssh: gpg2ssh.c gnutls-helpers.o + gcc -g -Wall --pedantic -o gpg2ssh gpg2ssh.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o + +ssh2gpg: ssh2gpg.c gnutls-helpers.o + gcc -g -Wall --pedantic -o ssh2gpg ssh2gpg.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o + +%.o: %.c + gcc -g -Wall --pedantic -o $@ -c $< + +clean: + rm -f monkeysphere *.o + +.PHONY: clean -- cgit v1.2.3