*** empty log message ***

This commit is contained in:
Ben Gras 2005-10-21 11:40:24 +00:00
parent aac4f32f51
commit 12898c03e4
2 changed files with 10 additions and 7 deletions

View file

@ -5,6 +5,7 @@ CC= exec cc
CFLAGS= -O -D_MINIX -D_POSIX_SOURCE
MDEC= /usr/mdec
MAKE= exec make -$(MAKEFLAGS)
GMAKE=/usr/gnu/bin/gmake
# Specify the programs that are part of the system image.
# Multiple boot medium drivers can be included in the image,
@ -50,7 +51,7 @@ usage:
# create a fresh configuration or system image
fresh:
cd ../lib && $(MAKE) clean
cd ../lib && $(GMAKE) clean
$(MAKE) clean
$(MAKE) libraries services
@ -70,7 +71,7 @@ image_small: includes
# rebuild the program or system libraries
includes:
cd ../include && $(MAKE) install
# cd ../include && $(MAKE) install
depend: includes
cd ../ && $(MAKE) depend
@ -81,7 +82,9 @@ services: includes
cd ../drivers && $(MAKE) install
libraries: includes
cd ../lib && $(MAKE) install
cd ../lib && $(GMAKE) clean
cd ../lib && $(GMAKE) all
cd ../lib && $(GMAKE) install
# make bootable and place system images

View file

@ -52,7 +52,7 @@ usr_roflag="-r"' > $RELEASEDIR/etc/fstab
HDEMU=1
COPYITEMS="usr/bin bin usr/lib"
COPYITEMS="usr/bin bin usr/lib usr/gnu"
RELEASEDIR=/usr/r
IMAGE=cdfdimage
ROOTIMAGE=rootimage
@ -94,7 +94,7 @@ ISO=${ISO}.iso
ISOGZ=${ISO}.gz
echo "Making $ISOGZ"
USRMB=400
USRMB=500
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
USRSECTS="`expr $USRMB \* 1024 \* 2`"
@ -179,8 +179,8 @@ else
fi
echo " * Fixups for owners and modes of dirs and files"
chown -R bin $RELEASEDIR/usr/src
chmod -R u+w $RELEASEDIR/usr/lib
chown -R bin $RELEASEDIR/usr/src $RELEASEDIR/usr/gnu
chmod -R u+w $RELEASEDIR/usr/src $RELEASEDIR/usr/gnu
find $RELEASEDIR/usr/src -type d | xargs chmod 755
find $RELEASEDIR/usr/src -type f | xargs chmod 644
find $RELEASEDIR/usr/src -name configure | xargs chmod 755