12345678910111213141516171819202122232425262728293031323334353637 |
- ################################################################################
- #
- # Copyright (c) 2014 Minoca Corp. All Rights Reserved
- #
- # Binary Name:
- #
- # GenFFS
- #
- # Abstract:
- #
- # This module builds the GenFFS build utility, which can create a single
- # FFS file.
- #
- # Author:
- #
- # Evan Green 6-Mar-2014
- #
- # Environment:
- #
- # Build
- #
- ################################################################################
- BINARY = genffs
- BUILD = yes
- BINPLACE = bin
- BINARYTYPE = build
- INCLUDES += $(SRCROOT)/os/uefi/include;
- OBJS = genffs.o
- include $(SRCROOT)/os/minoca.mk
|