## Process this file with automake to produce Makefile.in

@SET_MAKE@

noinst_LIBRARIES = libmtp.a
bin_PROGRAMS     = mtprendezvous
noinst_PROGRAMS  = mtpmirror mtpclient

INCLUDES = 					\
	-DG_LOG_DOMAIN=\"Jungle_Monkey\" 	\
	@JM_DEBUG_FLAGS@		 	\
	-DLOCALEDIR=\"$(datadir)/locale\" 	\
	-DJM_DATADIR=\"$(jmdir)\"		\
	-I$(top_srcdir)/src

MTP_FILES =						\
	mtp_types.h		mtp_types.c		\
	mtp_mirror.h		mtp_mirror.c		\
	mtp_server.h		mtp_server.c		\
	mtp_client.h		mtp_client.c		\
	mtp_debug.h		mtp_debug.c		

########################################

libmtp_a_SOURCES = $(MTP_FILES)

OTHER_LIBS = libmtp.a $(top_builddir)/src/util/libutil.a

mtprendezvous_SOURCES = mtprendezvous.c
mtprendezvous_LDADD   = $(OTHER_LIBS)

mtpmirror_SOURCES     = mtpmirror.c	
mtpmirror_LDADD       = $(OTHER_LIBS)

mtpclient_SOURCES     = mtpclient.c
mtpclient_LDADD       = $(OTHER_LIBS)


syntax highlighted by Code2HTML, v. 0.9.1