Mercurial > MadButterfly
view tools/Makefile.pmake @ 271:c990a9a9648f
Fix bug of calculator.
- calc can not handle button press event.
- It caused by miss-understanding event_t::cur_tgt.
It is a subject, not a shape that calc think.
- event_t::cur_tgt::obj is a shape that calc want.
It is a the subject that the subject stands for.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Sun, 25 Jan 2009 23:03:18 +0800 |
parents | 9008ac31efbd |
children | 586e50f82c1f |
line wrap: on
line source
BINS= svg2code.py M4SCRIPTS= mb_c_header.m4 mb_c_source.m4 foreach.m4 PREFIX?= /usr/local/ all: install: .for i in $(BINS) $(INSTALL) -m 755 ${i} ${PREFIX}bin/ .endfor $(INSTALL) -d ${PREFIX}share/mb .for i in $(M4SCRIPTS) $(INSTALL) ${i} ${PREFIX}share/mb/ .endfor clean: for i in *~; do \ echo "delete $$i"; rm -f $$i; \ done