monkeysphere debianization. Package can now be cleanly built with minimal lintian...
[monkeysphere.git] / src / keytrans / Makefile
1 all: openpgp2ssh
2
3 openpgp2ssh: openpgp2ssh.c gnutls-helpers.o
4         gcc -g -Wall --pedantic -o openpgp2ssh openpgp2ssh.c `libgnutls-config --libs --cflags` gnutls-helpers.o
5
6 %.o: %.c
7         gcc -g -Wall --pedantic -o $@ -c $<
8
9 clean: 
10         rm -f openpgp2ssh *.o
11
12 .PHONY: clean all