view Makefile.pmake @ 527:47a860beaa44 Android_Skia

Every coord can only appear at mot one time in the dirty coord list. rdman_coord_changed() will check COF_DIRTY flags to make sure never add a coord into dirty coord list more than one time. So, we don't need to check it, again, in clean_rdman_dirties().
author Thinker K.F. Li <thinker@branda.to>
date Tue, 22 Dec 2009 22:39:53 +0800
parents 042580eb6e6c
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