summaryrefslogtreecommitdiff
path: root/lib/builtins/ppc
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-08-23 17:32:38 +0000
committerChris Bieneman <beanz@apple.com>2016-08-23 17:32:38 +0000
commit62f82d7f5c94d95a77b42106f66fd62aeca37d3b (patch)
tree851969fc3bf7434e24151b20b2db9ca0bb614858 /lib/builtins/ppc
parent9bdf886af522586d6d7754064d30bbb1367e30b7 (diff)
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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@279539 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/builtins/ppc')
-rw-r--r--lib/builtins/ppc/Makefile.mk20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/builtins/ppc/Makefile.mk b/lib/builtins/ppc/Makefile.mk
deleted file mode 100644
index 0adc623aa..000000000
--- a/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)