123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ################################################################################
- #
- # Copyright (c) 2014 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information.
- #
- # Binary Name:
- #
- # Boot Library
- #
- # Abstract:
- #
- # This directory builds all flavors of the boot library.
- #
- # Author:
- #
- # Evan Green 19-Feb-2014
- #
- # Environment:
- #
- # Boot
- #
- ################################################################################
- DIRS = efi
- ##
- ## PC/AT is compiled for x86 and x64.
- ##
- ifneq (,$(filter x86 x64,$(ARCH)))
- DIRS += pcat
- endif
- EXTRA_SRC_DIRS = x86 x64 armv7 armv6
- include $(SRCROOT)/os/minoca.mk
- pcat: efi
|