mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
81 lines
2.5 KiB
Makefile
81 lines
2.5 KiB
Makefile
#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
|
|
|
|
## @file
|
|
# Windows makefile for C tools build.
|
|
#
|
|
# Copyright (c) 2009 - 2018, 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
|
|
|
|
LIBRARIES = Common
|
|
APPLICATIONS = \
|
|
Brotli \
|
|
Lzma \
|
|
Tiano
|
|
|
|
all: libs apps install
|
|
|
|
libs: $(LIBRARIES)
|
|
@echo.
|
|
@echo ######################
|
|
@echo # Build libraries
|
|
@echo ######################
|
|
@if not exist $(LIB_PATH) mkdir $(LIB_PATH)
|
|
@python Makefiles\NmakeSubdirs.py all $**
|
|
|
|
apps: $(APPLICATIONS)
|
|
@echo.
|
|
@echo ######################
|
|
@echo # Build executables
|
|
@echo ######################
|
|
@if not exist $(BIN_PATH) mkdir $(BIN_PATH)
|
|
@python Makefiles\NmakeSubdirs.py all $**
|
|
|
|
install: $(LIB_PATH) $(BIN_PATH)
|
|
@echo.
|
|
@echo ######################
|
|
@echo # Install to $(SYS_LIB_PATH)
|
|
@echo # Install to $(SYS_BIN_PATH)
|
|
@echo ######################
|
|
@-xcopy $(LIB_PATH)\*.lib $(SYS_LIB_PATH) /I /D /E /F /Y > NUL 2>&1
|
|
@-xcopy $(BIN_PATH)\*.exe $(SYS_BIN_PATH) /I /D /E /F /Y > NUL 2>&1
|
|
@-xcopy $(BIN_PATH)\*.bat $(SYS_BIN_PATH) /I /D /E /F /Y > NUL 2>&1
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@python Makefiles\NmakeSubdirs.py clean $(LIBRARIES) $(APPLICATIONS)
|
|
|
|
.PHONY: cleanall
|
|
cleanall:
|
|
@python Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) $(APPLICATIONS)
|
|
|
|
!INCLUDE Makefiles\ms.rule
|
|
|