blob: 814921ea3b0cc18694503e4878d3eac7cb5dce9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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
|