Makefile revision 1.1
11.1Sjruoho#
21.1Sjruoho# Common make for acpica tools and utilities
31.1Sjruoho#
41.1Sjruohoinclude Makefile.config
51.1Sjruoho
61.1Sjruoho
71.1Sjruohoall:	${DIRS}
81.1Sjruoho${DIRS}: FORCE
91.1Sjruoho	@cd $@; make; ls -al $@
101.1Sjruoho
111.1Sjruohoclean:	FORCE
121.1Sjruoho	@for d in ${DIRS}; do \
131.1Sjruoho		(cd $$d; \
141.1Sjruoho		if [ $$? -ne 0 ]; then \
151.1Sjruoho			echo "Bad element of DIRS: <$$d>"; \
161.1Sjruoho		else \
171.1Sjruoho			pwd; make clean; \
181.1Sjruoho		fi); \
191.1Sjruoho	done
201.1Sjruoho
211.1Sjruohoinstall:	FORCE
221.1Sjruoho	@for d in ${DIRS}; do \
231.1Sjruoho		(cd $$d; \
241.1Sjruoho		if [ $$? -ne 0 ]; then \
251.1Sjruoho			echo "Bad element of DIRS: <$$d>"; \
261.1Sjruoho		else \
271.1Sjruoho			pwd; make install; \
281.1Sjruoho		fi); \
291.1Sjruoho	done
301.1Sjruoho
311.1SjruohoFORCE:
32