experimental
Last change
on this file since 9e627f6 was 47fddc8, checked in by George Boudreau <georgeb@…>, 18 years ago |
Change bool parameter definitions from 0/1 to y/n to match the new menu app
|
-
Property mode
set to
100644
|
File size:
861 bytes
|
Rev | Line | |
---|
[613d46b] | 1 | # From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
|
---|
[65a2be6] | 2 | # Modified By: Joe Ciccone <jciccone@linuxfromscratch.org
|
---|
| 3 | # Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
|
---|
[613d46b] | 4 |
|
---|
| 5 | TOPDIR=$(shell pwd)
|
---|
| 6 | CONFIG_CONFIG_IN = Config.in
|
---|
| 7 | CONFIG = menu
|
---|
| 8 |
|
---|
| 9 | all: menuconfig
|
---|
[47fddc8] | 10 | @clear
|
---|
[613d46b] | 11 | @touch using_menuconfig
|
---|
| 12 | @`grep RUN_ME configuration | sed -e 's@RUN_ME=\"@@' -e 's@\"@@' ` || rm -f using_menuconfig
|
---|
| 13 | @rm -f using_menuconfig
|
---|
| 14 |
|
---|
| 15 |
|
---|
| 16 | $(CONFIG)/conf:
|
---|
| 17 | $(MAKE) -C $(CONFIG) conf
|
---|
| 18 |
|
---|
| 19 | $(CONFIG)/mconf:
|
---|
| 20 | $(MAKE) -C $(CONFIG) ncurses conf mconf
|
---|
| 21 |
|
---|
| 22 | menuconfig: $(CONFIG)/mconf
|
---|
| 23 | @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
---|
| 24 |
|
---|
| 25 | config: $(CONFIG)/conf
|
---|
| 26 | @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
---|
| 27 |
|
---|
| 28 | # Clean up
|
---|
| 29 |
|
---|
| 30 | clean:
|
---|
| 31 | rm -f configuration configuration.old error
|
---|
| 32 | - $(MAKE) -C $(CONFIG) clean
|
---|
| 33 |
|
---|
| 34 | clean-target:
|
---|
| 35 | rm -f error
|
---|
| 36 | - $(MAKE) -C $(CONFIG) clean
|
---|
| 37 |
|
---|
| 38 | .PHONY: all menuconfig config clean clean-target
|
---|
Note:
See
TracBrowser
for help on using the repository browser.