view Makefile @ 142:3efe77007127

Do not redraw all at begining, waiting for explosure. X Server will send X client a explose event after mapping. So, it just waits for explose event to show graphics.
author Thinker K.F. Li <thinker@branda.to>
date Wed, 24 Sep 2008 23:40:40 +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