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