loudmouth/Makefile.am
author hallski <hallski>
Wed, 01 Oct 2003 13:07:01 +0000
changeset 39 b909b5af5a97
parent 27 763a2b67fa10
child 66 577d5059b718
permissions -rw-r--r--
2003-10-01 Mikael Hallendal <micke@imendio.com> * loudmouth/Makefile.am: - added lm-queue.[ch] * loudmouth/lm-queue.[ch]: copied and extended from GQueue. * loudmouth/lm-connection.c: - Use LmQueue instead of GQueue (lm_connection_open_and_block): Better handling of the queue. (lm_connection_send_with_reply_and_block): - Fixed a bug causing replies to be over looked.

NULL=

INCLUDES = 				\
	-I.				\
	-I$(top_srcdir)			\
	$(LOUDMOUTH_CFLAGS)		\
	-DLM_COMPILATION		\
	-DRUNTIME_ENDIAN                \
	$(NULL)

lib_LTLIBRARIES = libloudmouth.la

libloudmouth_la_SOURCES =		\
	lm-connection.c	 		\
	lm-debug.c                      \
	lm-debug.h                      \
	lm-error.c			\
	lm-message.c	 		\
	lm-message-handler.c		\
	lm-message-node.c		\
	lm-parser.c			\
	lm-parser.h			\
	lm-internals.h			\
	lm-sha.c			\
	lm-sha.h			\
	lm-utils.c			\
	lm-queue.c                      \
	lm-queue.h                      \
	$(NULL)

libloudmouthinclude_HEADERS =		\
	lm-connection.h			\
	lm-error.h			\
	lm-message.h		 	\
	lm-message-handler.h		\
	lm-message-node.h		\
	lm-utils.h			\
	loudmouth.h			\
	$(NULL)

libloudmouth_la_LIBADD = 		\
	$(LOUDMOUTH_LIBS)

libloudmouthincludedir = $(includedir)/loudmouth-1.0/loudmouth

# an explicit dependency here so alm generated files get built
$(OBJECTS): $(built_sources)

noinst_PROGRAMS = test-lm

test_lm_SOURCES =			\
	test-lm.c

test_lm_LDADD =			 	\
	$(LOUDMOUTH_LIBS)		\
	libloudmouth.la			\
	$(NULL)