]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - scripts/kconfig_parser/Makefile
Move gitignore rules to corresponds to kconfig sources move
[linux-conf-perf.git] / scripts / kconfig_parser / Makefile
1 .PHONY: all clean
2 .SUFFIXES:
3
4 all: parser
5
6 KCONFIG_PREFIX = ../shared/kconfig
7 include $(KCONFIG_PREFIX)/files.mk
8
9 SRC  = parser.c \
10                cnfexpr.c \
11                symlist.c \
12                output.c
13 CFLAGS = -O0 -w -ggdb
14
15 parser: $(SRC) $(KCONFIG_SRC)
16         gcc $(CFLAGS) -o $@ $^ -I$(KCONFIG_PREFIX)
17
18 clean::
19         $(RM) parser