mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
c73f1101a2
------------------- 1. Removed previous compression methodology a. All files were removed 2. Using compression tools directly from tianocore/edk2/BaseTools a. Downloaded from master branch b. Changed Makefiles to build within Chipsec c. Added BrotliCompress 3. Reworked Windows and Linux Helper to utilize tools built from compression tools a. Both helpers utilize same logic of calling compression tools b. Updated to support BrotliCompress 4. Modified GUID functionality within uefi_common to unpack struct as strings opposed to numbers
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
## @file
|
|
#CHIPSEC: Platform Security Assessment Framework
|
|
#Copyright (c) 2019, Intel Corporation
|
|
#
|
|
#This program is free software; you can redistribute it and/or
|
|
#modify it under the terms of the GNU General Public License
|
|
#as published by the Free Software Foundation; Version 2.
|
|
#
|
|
#This program is distributed in the hope that it will be useful,
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
#GNU General Public License for more details.
|
|
#
|
|
#You should have received a copy of the GNU General Public License
|
|
#along with this program; if not, write to the Free Software
|
|
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
#Contact information:
|
|
#chipsec@intel.com
|
|
#
|
|
#This file incorporates work covered by the following copyright and permission notice
|
|
#
|
|
# Windows makefile for 'Common' module build.
|
|
#
|
|
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
# This program and the accompanying materials
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
#
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
#
|
|
!INCLUDE ..\Makefiles\ms.common
|
|
|
|
LIBNAME = Common
|
|
|
|
OBJECTS = \
|
|
CommonLib.obj \
|
|
Decompress.obj \
|
|
EfiCompress.obj \
|
|
EfiUtilityMsgs.obj \
|
|
MemoryFile.obj \
|
|
ParseInf.obj \
|
|
TianoCompress.obj \
|
|
|
|
!INCLUDE ..\Makefiles\ms.lib
|
|
|
|
|
|
|