mirror of
https://github.com/acpica/acpica/
synced 2025-01-22 09:22:16 +03:00
db2eb1f5b8
Makefiles to generate the acpica tools and utilities from within the original acpica source tree.
22 lines
305 B
Makefile
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:
|