experimental
Last change
on this file since 0208570 was 0208570, checked in by George Boudreau <georgeb@…>, 18 years ago |
Added gen_pkg_book.sh, the final driver for BLFS packages. A config file parser, regenerate deps files, create package book and all scripts.
|
-
Property mode
set to
100644
|
File size:
708 bytes
|
Rev | Line | |
---|
[0208570] | 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 = aConfig.in
|
---|
| 7 | CONFIG = menu
|
---|
| 8 |
|
---|
| 9 | all: menuconfig
|
---|
| 10 |
|
---|
| 11 | $(CONFIG)/conf:
|
---|
| 12 | $(MAKE) -C $(CONFIG) conf
|
---|
| 13 |
|
---|
| 14 | $(CONFIG)/mconf:
|
---|
| 15 | $(MAKE) -C $(CONFIG) ncurses conf mconf
|
---|
| 16 |
|
---|
| 17 | menuconfig: $(CONFIG)/mconf
|
---|
| 18 | @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
---|
| 19 |
|
---|
| 20 | config: $(CONFIG)/conf
|
---|
| 21 | @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
---|
| 22 |
|
---|
| 23 | # Clean up
|
---|
| 24 |
|
---|
| 25 | clean:
|
---|
| 26 | rm -f configuration configuration.old error
|
---|
| 27 | - $(MAKE) -C $(CONFIG) clean
|
---|
| 28 |
|
---|
| 29 | clean-target:
|
---|
| 30 | rm -f error
|
---|
| 31 | - $(MAKE) -C $(CONFIG) clean
|
---|
| 32 |
|
---|
| 33 | .PHONY: all menuconfig config clean clean-target
|
---|
Note:
See
TracBrowser
for help on using the repository browser.