Mercurial > MadButterfly
view examples/menu/Makefile.am @ 1215:8e372ae69010
Fix the issue of showing active mark for a frame in a tween
- Does not show active frame if user set an active frame in a tween
and move the to other frame.
- Frameline only redraw active mark of the current active frame is
same as one of new hover and last hover frame.
- It is fixed by detecting if the crruent active frame is in the same
frame as one of new hover and last hover frame.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Wed, 05 Jan 2011 18:53:54 +0800 |
parents | 674717c2c3ee |
children |
line wrap: on
line source
include $(top_srcdir)/config.mk #SUFFIXES=.svg .so noinst_LTLIBRARIES = list.la browser.la list_la_SOURCES = list.c list_la_LDFLAGS = -module -avoid-version -rpath /nowhere -shared browser_la_SOURCES = browser.c browser_la_LDFLAGS = -module -avoid-version -rpath /nowhere -shared list.mb: $(srcdir)/list.svg $(top_srcdir)/tools/svg2code.py $< $@ list.c: list.mb list.h m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@ list.h: list.mb m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ browser.h: browser.mb m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ browser.c: browser.mb browser.h m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@ browser.mb: $(srcdir)/browser.svg $(top_srcdir)/tools/svg2code.py $< $@ noinst_PROGRAMS = menu filebrowser EXTRA_DIST = menu_SOURCES = main.c nodist_menu_SOURCES = CFLAGS = @pangocairo_CFLAGS@ -g menu_CFLAGS = @pangocairo_CFLAGS@ menu_LDFLAGS = @pangocairo_LIBS@ menu_LDADD = $(top_builddir)/src/libmbfly.la CLEANFILES = menu.mb menu.c menu.h \ list.mb list.c list.h \ browser.mb browser.c browser.h filebrowser_SOURCES = filebrowser.c filebrowser_CFLAGS = @pangocairo_CFLAGS@ filebrowser_LDFLAGS = @pangocairo_LIBS@ filebrowser_LDADD = $(top_builddir)/src/libmbfly.la