Add jingle-send-iq function. Correct rejection because of unsupported applications...
[emacs-jabber-tox.git] / Makefile
blob49c99a72cada4cbdb0244a7995afba2be766f495
1 CFLAGS=-g -Wall `pkg-config --cflags farsight-0.1 dbus-glib-1`
2 LDFLAGS=`pkg-config --libs farsight-0.1 dbus-glib-1`
3 OBJS=main.o tox.o tox-session.o tox-marshal.o
5 tox : $(OBJS)
6 gcc -o tox $(OBJS) $(LDFLAGS)
8 main.o : tox.h
10 tox.o : tox.h tox-object-glue.h tox-session.h
12 tox-object-glue.h : tox-object.xml
13 dbus-binding-tool --mode=glib-server --output=tox-object-glue.h --prefix=tox tox-object.xml
15 tox-session.o : tox-session.h tox-session-glue.h tox-marshal.h
17 tox-session-glue.h : tox-session.xml
18 dbus-binding-tool --mode=glib-server --output=tox-session-glue.h --prefix=tox_session tox-session.xml
20 tox-marshal.c : tox-marshal.list
21 glib-genmarshal --prefix=tox_marshal tox-marshal.list --header --body > tox-marshal.c
23 tox-marshal.h : tox-marshal.list
24 glib-genmarshal --prefix=tox_marshal tox-marshal.list --header > tox-marshal.h