view tools/Makefile @ 143:21db69d46835

Fix the problem that left-upper side of a moving shape will be flashed. It is because a coord without member always have a {x=0, y=0, w=1, h=1} geometry value. It cause most left-upper corner been updated. It also cause Cairo to update minmum area that include all updated pixels. So, left-upper side of a updated shape will be updated by Cairo by copy application buffer to window. It causes cursor flashing.
author Thinker K.F. Li <thinker@branda.to>
date Thu, 25 Sep 2008 01:42:49 +0800
parents 4d2e28188460
children
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