blob: 98a5974d1ca2073caffdce79dfea9e11c7ff0f7f (
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
34
|
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 \
regex.bc \
strstream.bc \
typeinfo.bc
all: libcxx.bc
%.bc: %.cpp
$(CXX) $< -o $@
libcxx.bc: $(OBJECTS)
$(CXX) $(OBJECTS) -o libcxx.bc
|