source: Makefile@ 9b99ada

ablfs-more trunk
Last change on this file since 9b99ada was fd4a798, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove $Id$ comments, they are useless with git

  • Property mode set to 100644
File size: 687 bytes
RevLine 
[a705708]1# From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
2# Modified By: Joe Ciccone <jciccone@linuxfromscratch.org
3# Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
[2e2ac74]4# Manuel Canales Esparcia
5# Pierre Labastie
[a705708]6
7CONFIG_CONFIG_IN = Config.in
8CONFIG = menu
9
10all: menuconfig
[a22bfe1]11 @$$(grep RUN_ME configuration 2>/dev/null | sed -e 's@RUN_ME=\"@@' -e 's@\"@@')
[a705708]12
[f596dde]13menuconfig:
[cf2f109]14 @cp -a configuration configuration.old 2>/dev/null || true
[a4af6811]15 @CONFIG_="" KCONFIG_CONFIG=configuration \
16 python3 $(CONFIG)/menuconfig.py $(CONFIG_CONFIG_IN)
[a705708]17
18# Clean up
19
20clean:
[cf2f109]21 rm -f configuration configuration.old error
[a705708]22
[f596dde]23.PHONY: all menuconfig clean
Note: See TracBrowser for help on using the repository browser.