diff options
author | Chris Bieneman <beanz@apple.com> | 2016-08-23 17:32:38 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-08-23 17:32:38 +0000 |
commit | d470f434abb082a2c2386b15e8f6710780cdff9c (patch) | |
tree | 8bac1b083cdc07fc4c34579d16091db94200777c /compiler-rt/lib/builtins/ppc | |
parent | 200e3cbfb0196f78e0901de4b19d63a1e80ae8d1 (diff) | |
download | bcm5719-llvm-d470f434abb082a2c2386b15e8f6710780cdff9c.tar.gz bcm5719-llvm-d470f434abb082a2c2386b15e8f6710780cdff9c.zip |
Delete remaining compiler-rt makefiles
Summary:
Since we can now build the builtins without a full toolchain these files should no longer be needed.
This is the last vestige of autoconf!
Reviewers: compnerd, iains, jroelofs
Subscribers: dberris, llvm-commits
Differential Revision: https://reviews.llvm.org/D23777
llvm-svn: 279539
Diffstat (limited to 'compiler-rt/lib/builtins/ppc')
-rw-r--r-- | compiler-rt/lib/builtins/ppc/Makefile.mk | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/compiler-rt/lib/builtins/ppc/Makefile.mk b/compiler-rt/lib/builtins/ppc/Makefile.mk deleted file mode 100644 index 0adc623aa04..00000000000 --- a/compiler-rt/lib/builtins/ppc/Makefile.mk +++ /dev/null @@ -1,20 +0,0 @@ -#===- lib/builtins/ppc/Makefile.mk -------------------------*- Makefile -*--===# -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -#===------------------------------------------------------------------------===# - -ModuleName := builtins -SubDirs := -OnlyArchs := ppc - -AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) -Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) -ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o) -Implementation := Optimized - -# FIXME: use automatic dependencies? -Dependencies := $(wildcard lib/*.h $(Dir)/*.h) |