view 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
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