From dc114bf3e390f5bcca5cbe46e4577d4cb32dbfc5 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 10 Sep 2009 23:27:45 +0000 Subject: Unbreak building of assembly files (broken by my .s -> .S rename). - Noticed & patched by Nick Kledzik. - This may expose portability issues in the .S files, if so we should either disable them on non-Darwin, or even better make them portable. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@81476 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/x86_64/Makefile.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/x86_64') diff --git a/lib/x86_64/Makefile.mk b/lib/x86_64/Makefile.mk index f5f545e0..d6a2ac75 100644 --- a/lib/x86_64/Makefile.mk +++ b/lib/x86_64/Makefile.mk @@ -11,9 +11,9 @@ Dir := lib/x86_64 SubDirs := OnlyArchs := x86_64 -AsmSources := $(foreach file,$(wildcard $(Dir)/*.s),$(notdir $(file))) +AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) -ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.s=%.o) +ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o) Target := Optimized # FIXME: use automatic dependencies? -- cgit v1.2.3