diff options
author | Liming Gao <liming.gao@intel.com> | 2016-08-22 14:28:50 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2016-08-23 10:23:57 +0800 |
commit | 00588512dc05929ff5a9a52830724bee16f72c40 (patch) | |
tree | 27fab3dffe137b0a969ca61b4a51d00513dd7e02 /BaseTools | |
parent | 90fadfc00ad773441aeb97718cd9c2e3dc7d2f71 (diff) | |
download | edk2-platforms-00588512dc05929ff5a9a52830724bee16f72c40.tar.xz |
BaseTools GNU Makefile: Add the missing rules for cpp source file
Cc: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/Makefiles/footer.makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/BaseTools/Source/C/Makefiles/footer.makefile b/BaseTools/Source/C/Makefiles/footer.makefile index 2dfc683860..c3d80204af 100644 --- a/BaseTools/Source/C/Makefiles/footer.makefile +++ b/BaseTools/Source/C/Makefiles/footer.makefile @@ -1,7 +1,7 @@ ## @file
# Makefile
#
-# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
@@ -29,6 +29,9 @@ $(LIBRARY): $(OBJECTS) %.o : %.S
$(AS) -c $(ASFLAGS) $< -o $@
+%.o : %.cpp
+ $(CXX) -c $(CPPFLAGS) $< -o $@
+
.PHONY: clean
clean:
@rm -f $(OBJECTS) $(LIBRARY) $(DEPFILES)
|