view 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 9af23d9584d8
children
line wrap: on
line source

SUBDIRS= src tools

all:
.for i in $(SUBDIRS)
	@echo "==> Enter subdirectory $(i)"
	@cd ${i}; $(MAKE) $@
	@echo "<== Leave subdirectory $(i)"
.endfor

install:
.for i in $(SUBDIRS)
	@echo "==> Enter subdirectory $(i)"
	@cd ${i}; $(MAKE) $@
	@echo "<== Leave subdirectory $(i)"
.endfor

clean:
.for i in $(SUBDIRS)
	@echo "==> Enter subdirectory $(i)"
	@cd ${i}; $(MAKE) $@
	@echo "<== Leave subdirectory $(i)"
.endfor