experimental
Last change
on this file since ecfb828 was 910206c, checked in by George Boudreau <georgeb@…>, 18 years ago |
additions to Makefile.. housekeeping in gen_pkg_book.sh
|
-
Property mode
set to
100644
|
File size:
745 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 |
|
---|
[910206c] | 9 | all: menuconfig
|
---|
[0208570] | 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
|
---|
[910206c] | 18 | ./gen_config.sh
|
---|
[0208570] | 19 | @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
---|
[910206c] | 20 | ./gen_pkg_book.sh
|
---|
[0208570] | 21 |
|
---|
| 22 | config: $(CONFIG)/conf
|
---|
| 23 | @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
---|
| 24 |
|
---|
| 25 | # Clean up
|
---|
| 26 |
|
---|
| 27 | clean:
|
---|
| 28 | rm -f configuration configuration.old error
|
---|
| 29 | - $(MAKE) -C $(CONFIG) clean
|
---|
| 30 |
|
---|
| 31 | clean-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.