Mercurial > MadButterfly
view tools/Makefile.pmake @ 799:ba6bb69ee419
Fix issue of incorrect top position of bbox.
x of bbox generated by Inkscape is left-bottom corner and relative to
left-bottom corner of page. Up-direction is positive. But, in
previous implement, it assume getting a left-top corner. It is wrong,
and it is fixed, now.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Tue, 31 Aug 2010 14:54:47 +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