aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libcxx
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-03-22 18:21:53 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2013-03-25 00:34:11 +0700
commit85879d9d476d30fe5c7cdb0de8c643e39bc7fae9 (patch)
treeab74f2e66cb965cf563d2997df04af6b1fc0b4eb /system/lib/libcxx
parent9e185cfabd1e207339aae1fa5ad6247000e4c613 (diff)
Remove unused makefiles.
Diffstat (limited to 'system/lib/libcxx')
-rw-r--r--system/lib/libcxx/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/system/lib/libcxx/Makefile b/system/lib/libcxx/Makefile
deleted file mode 100644
index 814921ea..00000000
--- a/system/lib/libcxx/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-OBJECTS = \
- algorithm.bc \
- condition_variable.bc \
- future.bc \
- iostream.bc \
- memory.bc \
- random.bc \
- stdexcept.bc \
- system_error.bc \
- utility.bc \
- bind.bc \
- debug.bc \
- hash.bc \
- mutex.bc \
- string.bc \
- thread.bc \
- valarray.bc \
- chrono.bc \
- exception.bc \
- ios.bc \
- locale.bc \
- regex.bc \
- strstream.bc \
- typeinfo.bc
-
-all: libcxx.bc
-
-%.bc: %.cpp
- $(CXX) $< -o $@
-
-libcxx.bc: $(OBJECTS)
- $(CXX) $(OBJECTS) -o libcxx.bc
-