source: Makefile@ 962793a

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 962793a was 4da2512, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged r3068:3072 from expoerimental:
cmdline and config files support removal.

  • Property mode set to 100644
File size: 784 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
5TOPDIR=$(shell pwd)
6CONFIG_CONFIG_IN = Config.in
7CONFIG = menu
8
9all: menuconfig
10# @clear
11 @`grep RUN_ME configuration | sed -e 's@RUN_ME=\"@@' -e 's@\"@@' `
12
13$(CONFIG)/conf:
14 $(MAKE) -C $(CONFIG) conf
15
16$(CONFIG)/mconf:
17 $(MAKE) -C $(CONFIG) ncurses conf mconf
18
19menuconfig: $(CONFIG)/mconf
20 @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
21
22config: $(CONFIG)/conf
23 @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
24
25# Clean up
26
27clean:
28 rm -f configuration configuration.old error
29 - $(MAKE) -C $(CONFIG) clean
30
31clean-target:
32 rm -f error
33 - $(MAKE) -C $(CONFIG) clean
34
35.PHONY: all menuconfig config clean clean-target
Note: See TracBrowser for help on using the repository browser.