blob: 789a38d21a3470e1d010f89470a5c9bf579ae3e5 (
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
|
FILES= \
test-hello \
test-stackprotector-all \
test-stackprotector \
test-volatile-register-var \
test-fortify-source \
test-bionic \
test-libelf \
test-libnuma
CC := $(CC) -MD
all: $(FILES)
BUILD = $(CC) -o $(OUTPUT)$@ $@.c
###############################
test-hello:
$(BUILD)
test-stackprotector-all:
$(BUILD) -Werror -fstack-protector-all
test-stackprotector:
$(BUILD) -Werror -fstack-protector
test-volatile-register-var:
$(BUILD) -Werror -Wvolatile-register-var
test-fortify-source:
$(BUILD) -O2 -Werror -D_FORTIFY_SOURCE=2
test-bionic:
$(BUILD)
test-libelf:
$(BUILD) -lelf
test-libnuma:
$(BUILD) -lnuma
-include *.d */*.d
###############################
clean:
rm -f $(FILES) *.d
|