2.3
2.3.x
2.4
ablfs
ablfs-more
legacy
new_features
trunk
Last change
on this file since 3834b6e was f4ed135, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago |
Merged r2954:3058 from experimental.
|
-
Property mode
set to
100644
|
File size:
778 bytes
|
Rev | Line | |
---|
[f4ed135] | 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>
|
---|
| 4 |
|
---|
| 5 | # $Id$
|
---|
| 6 |
|
---|
| 7 | TOPDIR=$(shell pwd)
|
---|
| 8 | CONFIG_CONFIG_IN = Config.in
|
---|
| 9 | CONFIG = menu
|
---|
| 10 |
|
---|
| 11 | all: menuconfig
|
---|
| 12 |
|
---|
| 13 | $(CONFIG)/conf:
|
---|
| 14 | $(MAKE) -C $(CONFIG) conf
|
---|
| 15 |
|
---|
| 16 | $(CONFIG)/mconf:
|
---|
| 17 | $(MAKE) -C $(CONFIG) ncurses conf mconf
|
---|
| 18 |
|
---|
| 19 | menuconfig: $(CONFIG)/mconf
|
---|
| 20 | @./update_book.sh none
|
---|
| 21 | @./gen_config.sh
|
---|
| 22 | @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
---|
| 23 | @./gen_pkg_book.sh
|
---|
| 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.