-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
123 lines (95 loc) · 3.22 KB
/
Makefile
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Makefile for MemTest86+
#
# Author: Chris Brady
# Created: January 1, 1996
#
# Path for the floppy disk device
#
FDISK=/dev/fd0
AS?=as
CC?=gcc
OBJCOPY?=objcopy
AS+= -32
CFLAGS= -Wall -march=i486 -m32 -O0 -fomit-frame-pointer -fno-builtin \
-ffreestanding -fPIC $(SMP_FL) -fno-stack-protector -fgnu89-inline
ifneq ($(SERIAL_CONSOLE_DEFAULT),)
CFLAGS += -DSERIAL_CONSOLE_DEFAULT=$(SERIAL_CONSOLE_DEFAULT)
endif
ifneq ($(SERIAL_BAUD_RATE),)
CFLAGS += -DSERIAL_BAUD_RATE=$(SERIAL_BAUD_RATE)
endif
ifneq ($(SERIAL_TTY),)
CFLAGS += -DSERIAL_TTY=$(SERIAL_TTY)
endif
ifneq ($(CB_NOSPD),)
CFLAGS += -DCB_NOSPD=$(CB_NOSPD)
endif
# This reverts a change introduced with recent binutils (post
# http://sourceware.org/bugzilla/show_bug.cgi?id=10569). Needed to
# ensure Multiboot header is within the limit offset.
LD += -z max-page-size=0x1000
OBJS= head.pre.o reloc.o main.o test.o init.o lib.o patn.o screen_buffer.o \
config.o cpuid.o coreboot.o pci.o memsize.o spd.o error.o dmi.o controller.o \
smp.o vmem.o random.o multiboot.o
all: clean memtest.bin memtest
# Link it statically once so I know I don't have undefined
# symbols and then link it dynamically so I have full
# relocation information
memtest_shared: $(OBJS) memtest_shared.lds Makefile
$(LD) --warn-constructors --warn-common -static -T memtest_shared.lds \
-o $@ $(OBJS) && \
$(LD) -shared -Bsymbolic -T memtest_shared.lds -o $@ $(OBJS)
memtest_shared.bin: memtest_shared
$(OBJCOPY) -O binary $< memtest_shared.bin
memtest: memtest_shared.bin memtest.lds
$(LD) -s -T memtest.lds -b binary memtest_shared.bin -o $@
head.pre.s: head.S config.h defs.h test.h
$(CC) -E -traditional $< -o $@
bootsect.pre.s: bootsect.S config.h defs.h
$(CC) -E -traditional $< -o $@
setup.pre.s: setup.S config.h defs.h
$(CC) -E -traditional $< -o $@
memtest.bin: memtest_shared.bin bootsect.pre.o setup.pre.o memtest.bin.lds
$(LD) -T memtest.bin.lds bootsect.pre.o setup.pre.o -b binary \
memtest_shared.bin -o memtest.bin
reloc.o: reloc.c
$(CC) -c $(CFLAGS) -fno-strict-aliasing reloc.c
test.o: test.c
$(CC) -c -Wall -march=i486 -m32 -O0 -fomit-frame-pointer -fno-builtin -ffreestanding test.c
random.o: random.c
$(CC) -c -Wall -march=i486 -m32 -O3 -fomit-frame-pointer -fno-builtin -ffreestanding random.c
# rule for build number generation
build_number:
sh make_buildnum.sh
clean:
rm -f *.o *.pre.s *.iso memtest.bin memtest memtest_shared \
memtest_shared.bin memtest.iso
iso:
make all
./makeiso.sh
install: all
dd <memtest.bin >$(FDISK) bs=8192
install-precomp:
dd <precomp.bin >$(FDISK) bs=8192
dos: all
cat mt86+_loader memtest.bin > memtest.exe
junit.xml:
echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > [email protected]
echo "<testcase classname='memtest86+' name='memtest86+'>" >> [email protected]
$(MAKE) all >> [email protected] 2>&1 && type="system-out" || type="failure"; \
cat [email protected]; \
if [ "$$type" = "failure" ]; then \
echo "<failure type='buildFailed'>" >> [email protected]; \
echo "Building memtest86+ Failed"; \
else \
echo "<$$type>" >> [email protected]; \
echo "Building memtest86+ Succeeded"; \
fi; \
echo '<![CDATA[' >> [email protected]; \
cat [email protected] >> [email protected]; \
echo "]]></$$type>" >>[email protected]
rm -f [email protected]
echo "</testcase>" >> [email protected]
echo "</testsuite>" >> [email protected]
mv [email protected] $@
echo