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 | 62f82d7f5c94d95a77b42106f66fd62aeca37d3b (patch) | |
tree | 851969fc3bf7434e24151b20b2db9ca0bb614858 /lib/builtins/x86_64 | |
parent | 9bdf886af522586d6d7754064d30bbb1367e30b7 (diff) | |
download | compiler-rt-62f82d7f5c94d95a77b42106f66fd62aeca37d3b.tar.gz |
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/x86_64')
-rw-r--r-- | lib/builtins/x86_64/Makefile.mk | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/builtins/x86_64/Makefile.mk b/lib/builtins/x86_64/Makefile.mk deleted file mode 100644 index 83848dddd..000000000 --- a/lib/builtins/x86_64/Makefile.mk +++ /dev/null @@ -1,20 +0,0 @@ -#===- lib/builtins/x86_64/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 := x86_64 x86_64h - -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) |