From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 0EE3C1A1E40 for ; Mon, 5 Sep 2016 21:00:09 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP; 05 Sep 2016 21:00:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,290,1470726000"; d="scan'208";a="4841001" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.23]) by fmsmga005.fm.intel.com with ESMTP; 05 Sep 2016 21:00:08 -0700 From: Liming Gao To: edk2-devel@lists.01.org Date: Tue, 6 Sep 2016 11:59:45 +0800 Message-Id: <1473134387-36776-3-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 In-Reply-To: <1473134387-36776-1-git-send-email-liming.gao@intel.com> References: <1473134387-36776-1-git-send-email-liming.gao@intel.com> Subject: [Patch 2/4] BaseTools GNU makefile: remove unused .S rule X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2016 04:00:09 -0000 Cc: Yonghong Zhu Cc: Giri P Mudusuru Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao --- BaseTools/Source/C/Makefiles/footer.makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/BaseTools/Source/C/Makefiles/footer.makefile b/BaseTools/Source/C/Makefiles/footer.makefile index a58bff6..390873b 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 $@ -- 2.8.0.windows.1