acpica/generate/unix/Makefile
Robert Moore db2eb1f5b8 Add makefiles for generic unix generation of acpica.
Makefiles to generate the acpica tools and utilities from within
the original acpica source tree.
2009-04-22 09:48:38 -07:00

22 lines
305 B
Makefile

#
# Common make for acpica tools and utilities
#
include Makefile.config
all: ${DIRS}
${DIRS}: FORCE
@cd $@; make; ls -al $@.exe
clean: FORCE
@for d in ${DIRS}; do \
(cd $$d; \
if [ $$? -ne 0 ]; then \
echo "Bad element of DIRS: <$$d>"; \
else \
pwd; make clean; \
fi); \
done
FORCE: