1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#
# Common make for acpica tools and utilities
#
#
# Note: This makefile is intended to be used from within the native
# ACPICA directory structure, from under top level acpica directory.
# It specifically places all the object files for each tool in separate
# generate/unix subdirectories, not within the various ACPICA source
# code directories. This prevents collisions between different
# compilations of the same source file with different compile options.
#
ifeq ($(OS),efi)
BUILD_DIRECTORY_PATH = "generate/efi"
include generate/efi/Makefile.config
include generate/efi/Makefile.common
else
BUILD_DIRECTORY_PATH = "generate/unix"
include generate/unix/Makefile.config
include generate/unix/Makefile.common
endif
check:
# ASL tests
$(CURDIR)/tests/aslts.sh $(CURDIR)/tests/aslts $(CURDIR)/generate/unix
# misc tests
$(CURDIR)/debian/run-misc-tests.sh $(CURDIR) 20250404
|