source: BLFS/Makefile@ e6a616d

2.3 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since e6a616d was 63a051c, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Trying to fix all sorting issues due user locale settings.

  • Property mode set to 100644
File size: 831 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# $Id$
6
7LANG=C
8LC_ALL=C
9TOPDIR=$(shell pwd)
10CONFIG_CONFIG_IN = Config.in
11CONFIG = menu
12
13all: menuconfig
14
15$(CONFIG)/conf:
16 $(MAKE) -B -C $(CONFIG) conf
17
18$(CONFIG)/mconf:
19 $(MAKE) -B -C $(CONFIG) ncurses conf mconf
20
21menuconfig: $(CONFIG)/mconf
22 @./update_book.sh none
23 @./gen_config.sh
24 @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
25 @./gen_pkg_book.sh
26
27config: $(CONFIG)/conf
28 @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
29
30# Clean up
31
32clean:
33 rm -f configuration configuration.old error
34 - $(MAKE) -C $(CONFIG) clean
35
36clean-target:
37 rm -f error
38 - $(MAKE) -C $(CONFIG) clean
39
40.PHONY: all menuconfig config clean clean-target $(CONFIG)/conf $(CONFIG)/mconf
Note: See TracBrowser for help on using the repository browser.