CloverBootloader/BaseTools/Source/C/Makefiles/ms.rule

21 lines
357 B
Plaintext
Raw Normal View History

## @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)