]> git.sur5r.net Git - kconfig-frontends/commit
Makefile: comment tricky yconf condition
authorYann E. MORIN <yann.morin.1998@free.fr>
Sun, 9 Apr 2017 08:10:28 +0000 (10:10 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sun, 9 Apr 2017 08:10:28 +0000 (10:10 +0200)
commit4326da204f9df312ed54892e2e1e356cae1972f7
tree4895b704831b970360179b2a7b19c35a52968595
parent989d993023d06e9d6f7b67bb17f5b41763f7ce66
Makefile: comment tricky yconf condition

The yconf.c file is generated from the yconf.y yacc source; it is the
main and only source file that is actuall compiled, as it #include-s the
other source files (weird, but that's how it's done upstream).

So yconf.c does not need to be listed as a built source; the other two,
generated from lex and gperf source files, do need to be listed because
they are not part of _SOURCES, but are only in _EXTRA_SOURCES.

However, .c files generated from yacc code are nt considerate as being
intermediate files, and thus are not cleaned automatically.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Makefile.am