summaryrefslogtreecommitdiff
path: root/lib/x86_64
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-10 23:27:45 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-10 23:27:45 +0000
commitdc114bf3e390f5bcca5cbe46e4577d4cb32dbfc5 (patch)
tree8781048698b272cc1c9e1563c121ff77a0228b9c /lib/x86_64
parentfd17b8a32c45a43ae95d1c3d5312adccb7264955 (diff)
downloadcompiler-rt-dc114bf3e390f5bcca5cbe46e4577d4cb32dbfc5.tar.gz
compiler-rt-dc114bf3e390f5bcca5cbe46e4577d4cb32dbfc5.tar.bz2
compiler-rt-dc114bf3e390f5bcca5cbe46e4577d4cb32dbfc5.tar.xz
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
Diffstat (limited to 'lib/x86_64')
-rw-r--r--lib/x86_64/Makefile.mk4
1 files changed, 2 insertions, 2 deletions
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?