working with subkeys: preparing to write a gnutls-based gpg2ssh capable of feeding...
[monkeysphere.git] / Makefile
1 monkeysphere: main.c gnutls-helpers.o
2         gcc -g -Wall --pedantic -o monkeysphere main.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o
3
4 gpg2ssh: gpg2ssh.c gnutls-helpers.o
5         gcc -g -Wall --pedantic -o gpg2ssh gpg2ssh.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o
6
7 %.o: %.c
8         gcc -g -Wall --pedantic -o $@ -c $<
9
10 clean: 
11         rm -f monkeysphere *.o
12
13 .PHONY: clean