mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-28 12:25:19 +01:00
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)
|
||
|
|