source: Makefile@ 8589e90

ablfs-more legacy trunk
Last change on this file since 8589e90 was 2e2ac74, checked in by Pierre Labastie <pierre@…>, 5 years ago

Add missing $Id:$ comments

  • Property mode set to 100644
File size: 916 bytes
Line 
1# $Id:
2# From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
3# Modified By: Joe Ciccone <jciccone@linuxfromscratch.org
4# Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
5# Manuel Canales Esparcia
6# Pierre Labastie
7
8TOPDIR=$(shell pwd)
9CONFIG_CONFIG_IN = Config.in
10CONFIG = menu
11
12all: menuconfig
13# @clear
14 @`grep RUN_ME configuration | sed -e 's@RUN_ME=\"@@' -e 's@\"@@' `
15
16$(CONFIG)/conf:
17 $(MAKE) -C $(CONFIG) conf
18
19$(CONFIG)/mconf:
20 $(MAKE) -C $(CONFIG) ncurses conf mconf
21
22menuconfig: $(CONFIG)/mconf
23 -@cp -a configuration configuration.old
24 @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
25
26config: $(CONFIG)/conf
27 @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
28
29# Clean up
30
31clean:
32 rm -f configuration configuration.old error
33 - $(MAKE) -C $(CONFIG) clean
34
35clean-target:
36 rm -f error
37 - $(MAKE) -C $(CONFIG) clean
38
39.PHONY: all menuconfig config clean clean-target
Note: See TracBrowser for help on using the repository browser.