]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/Makefiles/ms.rule
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / C / Makefiles / ms.rule
1 ## @file
2 # Makefile
3 #
4 # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 #
7
8 #DEPFILES = $(OBJECTS:%.o=%.d)
9
10 .c.obj :
11 $(CC) -c $(CFLAGS) $(INC) $< -Fo$@
12
13 .S.obj :
14 $(AS) -c $(ASFLAGS) $< -Fo$@
15
16 .cpp.obj :
17 $(CXX) -c $(CPPFLAGS) $(INC) $< -Fo$@
18
19 #-include $(DEPFILES)
20