summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-06-05 13:16:12 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-06-05 16:09:37 +0200
commita0f0018496f01f22caf358a56b1d6b91f100af1a (patch)
tree1ebeaabb12d353ba1e4149709e642b649fd935af /setup.py
parent1684cfc14b7e569b4e4e6628d9edde1ad67bd7b1 (diff)
Turn syncconfig.py into genconfig.py and generate header
There should be a script available that generates the output header for the build. It usually makes sense to generate both the header and any incremental build information at the same time (automatically during build), so roll them both into the same script.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 54899fb..a107065 100644
--- a/setup.py
+++ b/setup.py
@@ -17,6 +17,7 @@ setuptools.setup(
py_modules=(
"kconfiglib",
"menuconfig",
+ "genconfig",
"oldconfig",
"syncconfig",
"alldefconfig",
@@ -28,8 +29,8 @@ setuptools.setup(
entry_points={
"console_scripts": (
"menuconfig = menuconfig:_main",
+ "genconfig = genconfig:main",
"oldconfig = oldconfig:main",
- "syncconfig = syncconfig:main",
"alldefconfig = alldefconfig:main",
"allnoconfig = allnoconfig:main",
"allmodconfig = allmodconfig:main",