diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-04-08 21:02:35 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-04-08 21:02:35 -0400 |
commit | 29b46325c50f7b767d1027c817c4e050806f2aa1 (patch) | |
tree | 0aab0b9299d0044dd7379758d77f81647ce74c77 /Makefile | |
parent | 106d82cc8db97956d373f09e44dcdee661918c90 (diff) |
working with subkeys: preparing to write a gnutls-based gpg2ssh capable of feeding the monkeysphere.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,9 @@ 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 + %.o: %.c gcc -g -Wall --pedantic -o $@ -c $< |