experimental
Last change
on this file since 755cd36 was 65a2be6, checked in by George Boudreau <georgeb@…>, 18 years ago |
Changes to Config.in. Adapt ./HLFS/master.sh to the latest svn (major changes in book
|
-
Property mode
set to
100644
|
File size:
853 bytes
|
Line | |
---|
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 | TOPDIR=$(shell pwd)
|
---|
6 | CONFIG_CONFIG_IN = Config.in
|
---|
7 | CONFIG = menu
|
---|
8 |
|
---|
9 | all: menuconfig
|
---|
10 | @touch using_menuconfig
|
---|
11 | @`grep RUN_ME configuration | sed -e 's@RUN_ME=\"@@' -e 's@\"@@' ` || rm -f using_menuconfig
|
---|
12 | @rm -f using_menuconfig
|
---|
13 |
|
---|
14 |
|
---|
15 | $(CONFIG)/conf:
|
---|
16 | $(MAKE) -C $(CONFIG) conf
|
---|
17 |
|
---|
18 | $(CONFIG)/mconf:
|
---|
19 | $(MAKE) -C $(CONFIG) ncurses conf mconf
|
---|
20 |
|
---|
21 | menuconfig: $(CONFIG)/mconf
|
---|
22 | @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
---|
23 |
|
---|
24 | config: $(CONFIG)/conf
|
---|
25 | @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
---|
26 |
|
---|
27 | # Clean up
|
---|
28 |
|
---|
29 | clean:
|
---|
30 | rm -f configuration configuration.old error
|
---|
31 | - $(MAKE) -C $(CONFIG) clean
|
---|
32 |
|
---|
33 | clean-target:
|
---|
34 | rm -f error
|
---|
35 | - $(MAKE) -C $(CONFIG) clean
|
---|
36 |
|
---|
37 | .PHONY: all menuconfig config clean clean-target
|
---|
Note:
See
TracBrowser
for help on using the repository browser.