view Makefile.pmake @ 1421:84368f4bc988

Fix issue of rdman->w and rdman->h always being zeor. It is reported by wycc in mailing list. w and h of rdman are assigned before rdman being initialized. But, initialization would clear full block of memory. So, they should be assigned after initialization.
author Thinker K.F. Li <thinker@codemud.net>
date Fri, 08 Apr 2011 09:47:00 +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