mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
b1264ef1e3
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
21 lines
357 B
Plaintext
Executable File
21 lines
357 B
Plaintext
Executable File
## @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)
|
|
|