mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
ec404f0afc
Modify Compression Libraries, Common, Makefiles, Includes Signed-off-by: BrentHoltsclaw <brent.holtsclaw@intel.com>
21 lines
357 B
Plaintext
21 lines
357 B
Plaintext
## @file
|
|
# Makefile
|
|
#
|
|
# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
|
|
#DEPFILES = $(OBJECTS:%.o=%.d)
|
|
|
|
.c.obj :
|
|
$(CC) -c $(CFLAGS) $(INC) $< -Fo$@
|
|
|
|
.S.obj :
|
|
$(AS) -c $(ASFLAGS) $< -Fo$@
|
|
|
|
.cpp.obj :
|
|
$(CXX) -c $(CPPFLAGS) $(INC) $< -Fo$@
|
|
|
|
#-include $(DEPFILES)
|
|
|