diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-09-10 23:27:45 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-10 23:27:45 +0000 |
| commit | 85922561eeb9115525c67882344993f7dc424d4c (patch) | |
| tree | b906bfe36b2e251012d83dd9d133d3c29d0523ba /compiler-rt/lib/ppc | |
| parent | 78b549399413c64de40f99ab0d3a8f2b6b22adfb (diff) | |
| download | bcm5719-llvm-85922561eeb9115525c67882344993f7dc424d4c.tar.gz bcm5719-llvm-85922561eeb9115525c67882344993f7dc424d4c.zip | |
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.
llvm-svn: 81476
Diffstat (limited to 'compiler-rt/lib/ppc')
| -rw-r--r-- | compiler-rt/lib/ppc/Makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/ppc/Makefile.mk b/compiler-rt/lib/ppc/Makefile.mk index 5d0f2b3df49..80654729bfe 100644 --- a/compiler-rt/lib/ppc/Makefile.mk +++ b/compiler-rt/lib/ppc/Makefile.mk @@ -11,9 +11,9 @@ Dir := lib/ppc SubDirs := OnlyArchs := ppc -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? |

