diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-05-26 21:46:33 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-05-26 21:46:33 -0400 |
commit | 4f321fb2967f009b8b3330c62bfec2fcc5475418 (patch) | |
tree | 3634d4d5b8e4adb29faa8f9bb3593d0fe20b1a5a /gpg2ssh/Makefile | |
parent | 19b2668dfef84687e052c42638ad7e696d5fa6a6 (diff) | |
parent | 4eba4e7e66fc7febb1e7255a649f6b6ad240d653 (diff) |
merging some changes from jrollins.
Diffstat (limited to 'gpg2ssh/Makefile')
-rw-r--r-- | gpg2ssh/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
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 |