summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Makefiles/ms.rule
blob: ba34eabde88fbcc4eb20af2d4438a484222affc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## @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)