diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-11 13:19:20 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-11 13:19:20 +0200 |
commit | 1f670483bff9e7a588fe90a7ec98b8950c1c13de (patch) | |
tree | 203e5b0cecc5f0991b185c46dfc9155448a948bf /scripts | |
parent | dc3c959a5f6d74e91f9a2d997d20e47b07b65628 (diff) | |
download | linux-conf-perf-1f670483bff9e7a588fe90a7ec98b8950c1c13de.tar.gz linux-conf-perf-1f670483bff9e7a588fe90a7ec98b8950c1c13de.tar.bz2 linux-conf-perf-1f670483bff9e7a588fe90a7ec98b8950c1c13de.zip |
parse_kconfig output executable name changed from parser to parse
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/parse_kconfig/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/parse_kconfig/Makefile b/scripts/parse_kconfig/Makefile index f582673..2988482 100644 --- a/scripts/parse_kconfig/Makefile +++ b/scripts/parse_kconfig/Makefile @@ -1,7 +1,7 @@ .PHONY: all clean .SUFFIXES: -all: parser +all: parse KCONFIG_PREFIX = ../shared/kconfig include $(KCONFIG_PREFIX)/files.mk @@ -12,7 +12,7 @@ SRC = parser.c \ output.c CFLAGS = -O0 -w -ggdb -parser: $(SRC) $(KCONFIG_SRC) +parse: $(SRC) $(KCONFIG_SRC) gcc $(CFLAGS) -o $@ $^ -I$(KCONFIG_PREFIX) clean:: |