blob: d84925d7b98da59e4fbb98098c8c89b1f7f721d3 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
.POSIX:
include config.mk
CFLAGS=-g -I$(INCLUDEDIR) -nostdinc -fno-builtin
LDFLAGS=-L$(LIBDIR) $(LIBS)
TESTOBJS=main.o \
assert.o \
complex.o \
ctype.o \
errno.o \
float.o \
iso646.o \
limits.o \
locale.o \
signal.o \
stdbool.o \
stddef.o \
time.o \
test.o
testlibc: $(TESTOBJS) $(LIBDIR)/libc.a
$(CC) -o $@ $(TESTOBJS) $(LDFLAGS)
assert.o: assert.c test.h
complex.o: complex.c test.h
ctype.o: ctype.c test.h
errno.o: errno.c test.h
fenv.o: fenv.c test.h
float.o: float.c test.h
inttypes.o: inttypes.c test.h
iso646.o: iso646.c test.h
limits.o: limits.c test.h
locale.o: locale.c test.h
math.o: math.c test.h
setjmp.o: setjmp.c test.h
signal.o: signal.c test.h
stdalign.o: stdalign.c test.h
stdard.o: stdarg.c test.h
stdatomic.o: stdatomic.c test.h
stdbool.o: stdbool.c test.h
stddef.o: stddef.c test.h
stdint.o: stdint.c test.h
stdio.o: stdio.c test.h
stdlib.o: stdlib.c test.h
stdnoreturn.o: stdnoreturn.c test.h
string.o: string.c test.h
tgmath.o: tgmath.c test.h
threads.o: threads.c test.h
time.o: time.c test.h
uchar.o: uchar.c test.h
wchar.o: wchar.c test.h
wctype.o: wctype.c test.h
test.o: test.c test.h
main.o: main.c test.h
clean:
rm -f *.o testlibc
|