diff options
author | Liming Gao <liming.gao@intel.com> | 2016-08-31 12:46:17 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-09-08 13:05:03 +0800 |
commit | b15153451c7332532cfacd90d70942c7c03809f2 (patch) | |
tree | 93dcd68bda90ab1803d7c8a4d57edcad7418d98f /BaseTools | |
parent | a9355bb81ad43231c978431ecf0abbe5cfb3a1fa (diff) | |
download | edk2-platforms-b15153451c7332532cfacd90d70942c7c03809f2.tar.xz |
BaseTools GNU makefile: remove unused .S rule
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Cc: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/Makefiles/footer.makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/BaseTools/Source/C/Makefiles/footer.makefile b/BaseTools/Source/C/Makefiles/footer.makefile index a58bff667d..390873bf5c 100644 --- a/BaseTools/Source/C/Makefiles/footer.makefile +++ b/BaseTools/Source/C/Makefiles/footer.makefile @@ -26,9 +26,6 @@ $(LIBRARY): $(OBJECTS) %.o : %.c
$(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $< -o $@
-%.o : %.S
- $(BUILD_AS) -c $(BUILD_ASFLAGS) $< -o $@
-
%.o : %.cpp
$(BUILD_CXX) -c $(BUILD_CPPFLAGS) $(BUILD_CXXFLAGS) $< -o $@
|