annotate tools/Makefile @ 151:d11aa8fc06c7
Fix bug of tanks do not show at right places.
Since we avoid to dirty a subtree if root of a subtree have been dirty or
hidden, it make children that was added into coord tree after a coord be
dirty do not be marked with COF_DIRTY flag. To fix it, when a new coord
is created, the parent is checked and mark new coord with COF_DIRTY flag
if the parent is dirty. It forces new coords to be cleaned and transformed
to right places.
author |
Thinker K.F. Li <thinker@branda.to> |
date |
Fri, 26 Sep 2008 17:42:16 +0800 |
parents |
4d2e28188460 |
children |
|
rev |
line source |
134
|
1 BINS= svg2code.py
|
|
2 M4SCRIPTS= mb_c_header.m4 mb_c_source.m4 foreach.m4
|
|
3 PREFIX?= /usr/local/
|
|
4
|
|
5 all:
|
|
6
|
|
7 install:
|
|
8 .for i in $(BINS)
|
|
9 $(INSTALL) -m 755 ${i} ${PREFIX}bin/
|
|
10 .endfor
|
|
11 $(INSTALL) -d ${PREFIX}share/mb
|
|
12 .for i in $(M4SCRIPTS)
|
|
13 $(INSTALL) ${i} ${PREFIX}share/mb/
|
|
14 .endfor
|
|
15
|
|
16 clean:
|
|
17 for i in *~; do \
|
|
18 echo "delete $$i"; rm -f $$i; \
|
|
19 done
|