blob: 16f272fbd5eead11dc3d542b53cbacc96d438ab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
all: kconfig_parser
kconfig_parser:
@$(MAKE) -C scripts/kconfig_parser/
main_loop: kconfig_parser
scripts/main_loop.py
clean:
@$(MAKE) -C scripts/kconfig_parser/ clean
$(RM) linux/.config
$(RM) -r build
# Linux has separate clean option because it takes more time and because in most of the time it is not required clean
clean_linux:
@$(MAKE) -C linux clean
|