b8545a99b22d8e743d2c43f64ae1937c2b243ec4
[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