diff options
author | Karel Kočí <cynerd@email.cz> | 2015-07-17 13:42:03 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-07-17 13:42:03 +0200 |
commit | 2640d58ee088d4bcfedfd9069292dc1af9cad7a2 (patch) | |
tree | aad099cc301e756e3f715ecc510599fd5cf8a1f9 /Makefile | |
parent | 1ad844cee99d5d7b737b62f56eb5ccdc806f433d (diff) | |
download | linux-conf-perf-2640d58ee088d4bcfedfd9069292dc1af9cad7a2.tar.gz linux-conf-perf-2640d58ee088d4bcfedfd9069292dc1af9cad7a2.tar.bz2 linux-conf-perf-2640d58ee088d4bcfedfd9069292dc1af9cad7a2.zip |
Integrate allconfig
allconfig is now integrated in project.
It is going to replace permute_conf for generating.
For this reason is default behaviour changed to print only changeable configurtaion options.
Previous behaviour can be used with --all switch.
Also add .gitignore and remove compiled file from repository.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,7 +2,7 @@ -include .conf.mk -all: parse_kconfig write_config permute_conf picosat +all: parse_kconfig write_config allconfig permute_conf picosat help: @echo "all - Builds basic programs and prints message about next steps." @@ -60,6 +60,7 @@ clean: @$(MAKE) -C scripts/parse_kconfig clean @$(MAKE) -C scripts/write_config clean @$(MAKE) -C scripts/permute_conf clean + @$(MAKE) -C scripts/allconfig clean @if [ -e scripts/picosat-959/makefile ]; then $(MAKE) -C scripts/picosat-959 clean; fi $(RM) .conf.mk $(RM) -r jobfiles output result @@ -90,6 +91,9 @@ parse_kconfig: write_config: @$(MAKE) -C scripts/write_config/ +allconfig: + @$(MAKE) -C scripts/allconfig/ + permute_conf: @$(MAKE) -C scripts/permute_conf/ |