summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-04-08 21:02:35 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-04-08 21:02:35 -0400
commit29b46325c50f7b767d1027c817c4e050806f2aa1 (patch)
tree0aab0b9299d0044dd7379758d77f81647ce74c77 /Makefile
parent106d82cc8db97956d373f09e44dcdee661918c90 (diff)
working with subkeys: preparing to write a gnutls-based gpg2ssh capable of feeding the monkeysphere.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b8545a9..4fb4556 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<