annotate tools/Makefile.pmake @ 459:8b155b77fa14
Count positions an arc being for bounding box of the path.
- An arc is part of a circle/ellipse.
- We add positions of 4 corners into the list of points of the path.
- The position of 4 corners will be included in the bounding box of
the path.
author |
Thinker K.F. Li <thinker@branda.to> |
date |
Thu, 10 Sep 2009 22:21:51 +0800 |
parents |
9008ac31efbd |
children |
586e50f82c1f |
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
|