forked from camilaDiToro/bOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (25 loc) · 700 Bytes
/
Copy pathMakefile
File metadata and controls
35 lines (25 loc) · 700 Bytes
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
all: bootloader kernel userland image
bootloader:
cd Bootloader; make all
kernel:
cd Kernel; make all
userland:
cd Userland; make all
image: kernel bootloader userland
cd Image; make all
clean:
cd Bootloader; make clean
cd Image; make clean
cd Kernel; make clean
cd Userland; make clean
rm -rf check
rm -rf .config
check:
mkdir -p check
cppcheck --quiet --enable=all --force --inconclusive . 2> ./check/cppout.txt
pvs-studio-analyzer trace -- make
pvs-studio-analyzer analyze
plog-converter -a '64:1,2,3;GA:1,2,3;OP:1,2,3' -t tasklist -o ./check/report.tasks ./PVS-Studio.log
rm PVS-Studio.log
mv strace_out check
.PHONY: bootloader image kernel userland all clean check