source: Makefile@ 106157fd

ablfs-more legacy trunk
Last change on this file since 106157fd was a4af6811, checked in by Pierre Labastie <pierre@…>, 5 years ago

Various fixes for Kconfiglib:

  • remove the old setting of LANG in BLFS/Makefile
  • explicitly use python3, because now menuconfig.py has #!/usr/bin/python, we may have only python3 available
  • add quotes in Config.in for BLFS
  • Property mode set to 100644
File size: 694 bytes
Line 
1# $Id$
2# From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
3# Modified By: Joe Ciccone <jciccone@linuxfromscratch.org
4# Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
5# Manuel Canales Esparcia
6# Pierre Labastie
7
8CONFIG_CONFIG_IN = Config.in
9CONFIG = menu
10
11all: menuconfig
12 @$$(grep RUN_ME configuration 2>/dev/null | sed -e 's@RUN_ME=\"@@' -e 's@\"@@')
13
14menuconfig:
15 @cp -a configuration configuration.old 2>/dev/null || true
16 @CONFIG_="" KCONFIG_CONFIG=configuration \
17 python3 $(CONFIG)/menuconfig.py $(CONFIG_CONFIG_IN)
18
19# Clean up
20
21clean:
22 rm -f configuration configuration.old error
23
24.PHONY: all menuconfig clean
Note: See TracBrowser for help on using the repository browser.