view src/Makefile.am @ 224:29e1b2bffe4c

X backend only sent EVT_MOUSE_MOVE_RAW to MadButterfly. - backend does not interpret mouse events (over/out/move), now. - redraw manager, now, interpret mouse events to make it backend independent. - The task (interpret mouse events) should be moved to somewhere in futhure. - backend only sent MotionNotify as EVT_MOUSE_MOVE_RAW. - EVT_MOUSE_MOVE_RAW is interpreted by backend independent code.
author Thinker K.F. Li <thinker@branda.to>
date Mon, 15 Dec 2008 10:13:03 +0800
parents 45d9a1e2764d
children a6e559fb76d7
line wrap: on
line source

include $(top_srcdir)/config.mk

lib_LTLIBRARIES = libmbfly.la

noinst_PROGRAMS = X_main

libmbfly_la_SOURCES = animate.c chgcolor.c coord.c event.c geo.c	\
	observer.c paint.c redraw_man.c rotate.c shape_path.c		\
	shape_rect.c shape_text.c shift.c subtree_free.c timer.c 	\
	timertool.c tools.c visibility.c X_supp.c prop.c
libmbfly_la_CPPFLAGS = @cairo_CFLAGS@
libmbfly_la_LDFLAGS = @cairo_LIBS@

X_main_SOURCES = X_main.c
X_main_LDADD = $(top_builddir)/src/libmbfly.la
X_main_CPPFLAGS = @cairo_CFLAGS@ -I$(top_builddir)/src
X_main_LDFLAGS = @cairo_LIBS@