*** empty log message ***
This commit is contained in:
parent
aac4f32f51
commit
12898c03e4
@ -5,6 +5,7 @@ CC= exec cc
|
|||||||
CFLAGS= -O -D_MINIX -D_POSIX_SOURCE
|
CFLAGS= -O -D_MINIX -D_POSIX_SOURCE
|
||||||
MDEC= /usr/mdec
|
MDEC= /usr/mdec
|
||||||
MAKE= exec make -$(MAKEFLAGS)
|
MAKE= exec make -$(MAKEFLAGS)
|
||||||
|
GMAKE=/usr/gnu/bin/gmake
|
||||||
|
|
||||||
# Specify the programs that are part of the system image.
|
# Specify the programs that are part of the system image.
|
||||||
# Multiple boot medium drivers can be included in the image,
|
# Multiple boot medium drivers can be included in the image,
|
||||||
@ -50,7 +51,7 @@ usage:
|
|||||||
|
|
||||||
# create a fresh configuration or system image
|
# create a fresh configuration or system image
|
||||||
fresh:
|
fresh:
|
||||||
cd ../lib && $(MAKE) clean
|
cd ../lib && $(GMAKE) clean
|
||||||
$(MAKE) clean
|
$(MAKE) clean
|
||||||
$(MAKE) libraries services
|
$(MAKE) libraries services
|
||||||
|
|
||||||
@ -70,7 +71,7 @@ image_small: includes
|
|||||||
|
|
||||||
# rebuild the program or system libraries
|
# rebuild the program or system libraries
|
||||||
includes:
|
includes:
|
||||||
cd ../include && $(MAKE) install
|
# cd ../include && $(MAKE) install
|
||||||
|
|
||||||
depend: includes
|
depend: includes
|
||||||
cd ../ && $(MAKE) depend
|
cd ../ && $(MAKE) depend
|
||||||
@ -81,7 +82,9 @@ services: includes
|
|||||||
cd ../drivers && $(MAKE) install
|
cd ../drivers && $(MAKE) install
|
||||||
|
|
||||||
libraries: includes
|
libraries: includes
|
||||||
cd ../lib && $(MAKE) install
|
cd ../lib && $(GMAKE) clean
|
||||||
|
cd ../lib && $(GMAKE) all
|
||||||
|
cd ../lib && $(GMAKE) install
|
||||||
|
|
||||||
|
|
||||||
# make bootable and place system images
|
# make bootable and place system images
|
||||||
|
@ -52,7 +52,7 @@ usr_roflag="-r"' > $RELEASEDIR/etc/fstab
|
|||||||
|
|
||||||
HDEMU=1
|
HDEMU=1
|
||||||
|
|
||||||
COPYITEMS="usr/bin bin usr/lib"
|
COPYITEMS="usr/bin bin usr/lib usr/gnu"
|
||||||
RELEASEDIR=/usr/r
|
RELEASEDIR=/usr/r
|
||||||
IMAGE=cdfdimage
|
IMAGE=cdfdimage
|
||||||
ROOTIMAGE=rootimage
|
ROOTIMAGE=rootimage
|
||||||
@ -94,7 +94,7 @@ ISO=${ISO}.iso
|
|||||||
ISOGZ=${ISO}.gz
|
ISOGZ=${ISO}.gz
|
||||||
echo "Making $ISOGZ"
|
echo "Making $ISOGZ"
|
||||||
|
|
||||||
USRMB=400
|
USRMB=500
|
||||||
|
|
||||||
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
|
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
|
||||||
USRSECTS="`expr $USRMB \* 1024 \* 2`"
|
USRSECTS="`expr $USRMB \* 1024 \* 2`"
|
||||||
@ -179,8 +179,8 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo " * Fixups for owners and modes of dirs and files"
|
echo " * Fixups for owners and modes of dirs and files"
|
||||||
chown -R bin $RELEASEDIR/usr/src
|
chown -R bin $RELEASEDIR/usr/src $RELEASEDIR/usr/gnu
|
||||||
chmod -R u+w $RELEASEDIR/usr/lib
|
chmod -R u+w $RELEASEDIR/usr/src $RELEASEDIR/usr/gnu
|
||||||
find $RELEASEDIR/usr/src -type d | xargs chmod 755
|
find $RELEASEDIR/usr/src -type d | xargs chmod 755
|
||||||
find $RELEASEDIR/usr/src -type f | xargs chmod 644
|
find $RELEASEDIR/usr/src -type f | xargs chmod 644
|
||||||
find $RELEASEDIR/usr/src -name configure | xargs chmod 755
|
find $RELEASEDIR/usr/src -name configure | xargs chmod 755
|
||||||
|
Loading…
x
Reference in New Issue
Block a user