]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - Makefile
Add write_config to root Makefile
[linux-conf-perf.git] / Makefile
1
2 all: kconfig_parser
3
4 parse_kconfig:
5         @$(MAKE) -C scripts/parse_kconfig/
6
7 write_config:
8         @$(MAKE) -C scripts/write_config/
9
10 main_loop: kconfig_parser
11         scripts/main_loop.py
12
13
14 clean:
15         @$(MAKE) -C scripts/parse_kconfig/ clean
16         @$(MAKE) -C scripts/write_config/ clean
17         $(RM) linux/.config
18         $(RM) -r build
19
20 # Linux has separate clean option because it takes more time and because in most of the time it is not required clean
21 clean_linux:
22         @$(MAKE) -C linux clean