summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/C/Makefiles/ms.rule
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/C/Makefiles/ms.rule')
-rw-r--r--BaseTools/Source/C/Makefiles/ms.rule13
1 files changed, 13 insertions, 0 deletions
diff --git a/BaseTools/Source/C/Makefiles/ms.rule b/BaseTools/Source/C/Makefiles/ms.rule
new file mode 100644
index 0000000000..94687a075d
--- /dev/null
+++ b/BaseTools/Source/C/Makefiles/ms.rule
@@ -0,0 +1,13 @@
+#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)
+