diff options
author | Alexey Neyman <stilor@att.net> | 2018-02-23 19:05:41 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | 9dc94f36627ec79721e485bb4ae50af9fb67c9fc (patch) | |
tree | 42fc3520fbb9d6c30c61f3c3f0ff5ae2ac961cad /kconfig | |
parent | 69df9ae9ddb806b42d962ae8a0b2b8f7b31f480e (diff) | |
download | crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.tar.gz crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.tar.bz2 crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.zip |
Install "pure data" directories
... and update .gitignore. Survives 'make distcheck'.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/kconfig/Makefile.am b/kconfig/Makefile.am index 413d9446..a54c170d 100644 --- a/kconfig/Makefile.am +++ b/kconfig/Makefile.am @@ -1,16 +1,21 @@ ## vim: set noet : ## TBD turn off program renaming for these? Or account for it in ct-ng script? +## TBD when kconfig is split into a subpackage, need to remove this option from sub-configure transform = s,x,x, ## TBD install into lib/crosstool-ng/kconfig? or move to libexec which seems more suitable pkglibexec_PROGRAMS = conf nconf mconf -AM_LFLAGS = -L -Pzconf -AM_YFLAGS = -l -b zconf -p zconf +EXTRA_DIST = zconf.y zconf.l \ + expr.h list.h lkc.h lkc_proto.h nconf.h lxdialog/dialog.h \ + confdata.c expr.c kconf_id.c menu.c symbol.c util.c +CLEANFILES = zconf.lex.c zconf.c BUILT_SOURCES = zconf.c zconf.lex.c +AM_LFLAGS = -L -Pzconf +AM_YFLAGS = -l -b zconf -p zconf AM_CPPFLAGS = -include config.h -DCONFIG_=\"CT_\" conf_SOURCES = conf.c zconf.c |