CloverBootloader/BaseTools/Source/C/Makefiles/ms.rule
Sergey Isakov b1264ef1e3 changes of BaseTools
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-09-04 23:02:41 +03:00

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)