broke out gnutls business into a helper file in preparation for new projects.
[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 %.o: %.c
5         gcc -g -Wall --pedantic -o $@ -c $<
6
7 clean: 
8         rm -f monkeysphere *.o
9
10 .PHONY: clean