Changeset 1f7e45f


Ignore:
Timestamp:
08/22/2006 06:56:08 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
fc62e52
Parents:
ecfb828
Message:

Trying to define work flow.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • BLFS/Makefile

    recfb828 r1f7e45f  
    44
    55TOPDIR=$(shell pwd)
    6 CONFIG_CONFIG_IN = aConfig.in
     6CONFIG_CONFIG_IN = Config.in
    77CONFIG = menu
    88
     
    1616
    1717menuconfig: $(CONFIG)/mconf
    18         ./gen_config.sh
     18        @./update_book.sh none
     19        @./gen_config.sh
    1920        @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
    20         ./gen_pkg_book.sh
     21        @./gen_pkg_book.sh
    2122
    2223config: $(CONFIG)/conf
  • BLFS/gen_config.sh

    recfb828 r1f7e45f  
    44#
    55
    6 export outFile=aConfig.in       # file for reading and writing to.
     6export outFile=Config.in        # file for reading and writing to.
    77export inFile=packages          # file for reading and writing to.
    88
  • BLFS/update_book.sh

    recfb828 r1f7e45f  
    7373[ "${DOC_MODE}" != "none" ] && BOOK_Source
    7474
    75 echo -en "\n\tGenerating packages database file ..."
    76 generate_packages
    77 echo "done."
     75if [ "${DOC_MODE}" = "none" ] ; then
     76  echo -en "\n\tGenerating packages database file ..."
     77  generate_packages
     78  echo "done."
    7879
    79 echo -en "\tGenerating alsa dependencies list ..."
    80 generate_alsa
    81 echo "done."
     80  echo -en "\tGenerating alsa dependencies list ..."
     81  generate_alsa
     82  echo "done."
    8283
    83 echo -en "\tGenerating gnome-core dependencies list ..."
    84 generate_gnome_core
    85 echo "done."
     84  echo -en "\tGenerating gnome-core dependencies list ..."
     85  generate_gnome_core
     86  echo "done."
    8687
    87 echo -en "\tGenerating gnome-full dependencies list ..."
    88 generate_gnome_full
    89 echo "done."
     88  echo -en "\tGenerating gnome-full dependencies list ..."
     89  generate_gnome_full
     90  echo "done."
    9091
    91 echo -en "\tGenerating kde-core dependencies list ..."
    92 generate_kde_core
    93 echo "done."
     92  echo -en "\tGenerating kde-core dependencies list ..."
     93  generate_kde_core
     94  echo "done."
    9495
    95 echo -en "\tGenerating kde-full dependencies list ..."
    96 generate_kde_full
    97 echo -e "done."
     96  echo -en "\tGenerating kde-full dependencies list ..."
     97  generate_kde_full
     98  echo -e "done."
    9899
    99 echo -en "\tGenerating kde-koffice dependencies list ..."
    100 generate_kde_koffice
    101 echo -e "done."
     100  echo -en "\tGenerating kde-koffice dependencies list ..."
     101  generate_kde_koffice
     102  echo -e "done."
    102103
    103 echo -en "\tGenerating xorg7 dependencies list ..."
    104 generate_xorg7
    105 echo "done."
     104  echo -en "\tGenerating xorg7 dependencies list ..."
     105  generate_xorg7
     106  echo "done."
     107fi
    106108
  • blfs

    recfb828 r1f7e45f  
    136136fi
    137137
    138 # Generate Config.in and run the menuconfig interface
    139  ./gen_config.sh
    140 # make
     138# Run the menuconfig interface
     139make
    141140
Note: See TracChangeset for help on using the changeset viewer.