aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libcxx
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-17 19:05:12 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-17 19:05:12 -0800
commitc3be0254c59538e43d1b33e6b537dae917751752 (patch)
treecb6e7c05e329905503e425cb3d3b7e2ee110ced6 /system/lib/libcxx
parent907f7b1c9c482726866a6f66ef701281a56c1df6 (diff)
preparations for libcxx building
Diffstat (limited to 'system/lib/libcxx')
-rw-r--r--system/lib/libcxx/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/system/lib/libcxx/Makefile b/system/lib/libcxx/Makefile
new file mode 100644
index 00000000..432ba492
--- /dev/null
+++ b/system/lib/libcxx/Makefile
@@ -0,0 +1,35 @@
+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 \
+ readme.txt \
+ string.bc \
+ thread.bc \
+ valarray.bc \
+ chrono.bc \
+ exception.bc \
+ ios.bc \
+ locale.bc \
+ new.bc \
+ regex.bc \
+ strstream.bc \
+ typeinfo.bc
+
+all: libcxx.bc
+
+%.bc: %.cpp
+ $(CXX) $< -o $@
+
+libcxx.bc: $(OBJECTS)
+ $(CXX) $(OBJECTS) -o libcxx.bc
+