blob: 46b7650983cb6b7200f42a459fd62499d9e0b014 (
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
|
FILES= \
test-hello \
test-stackprotector-all \
test-stackprotector \
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-libnuma:
$(BUILD) -lnuma
-include *.d */*.d
###############################
clean:
rm -f $(FILES) *.d
|