diff options
-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:: |