*** empty log message ***
This commit is contained in:
parent
9bc5da4276
commit
6d5b90974a
7
Makefile
7
Makefile
|
|
@ -25,7 +25,7 @@ usage:
|
||||||
# for which it has to install /etc (for users and ownerships).
|
# for which it has to install /etc (for users and ownerships).
|
||||||
# etcfiles also creates a directory hierarchy in its
|
# etcfiles also creates a directory hierarchy in its
|
||||||
# 'make install' target.
|
# 'make install' target.
|
||||||
world: etcfiles includes depend libraries cmds bigcmds install biginstallcmds postinstall
|
world: etcfiles includes depend libraries cmds bigcmds contrib install biginstallcmds postinstall
|
||||||
|
|
||||||
includes:
|
includes:
|
||||||
cd include && $(MAKE) install
|
cd include && $(MAKE) install
|
||||||
|
|
@ -40,11 +40,11 @@ bigcmds:
|
||||||
cd commands && $(MAKE) bigall
|
cd commands && $(MAKE) bigall
|
||||||
|
|
||||||
contrib:
|
contrib:
|
||||||
cd contrib && $(MAKE) all
|
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) all; fi
|
||||||
|
|
||||||
install::
|
install::
|
||||||
cd commands && $(MAKE) $@
|
cd commands && $(MAKE) $@
|
||||||
# cd contrib && $(MAKE) $@
|
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) install; fi
|
||||||
|
|
||||||
biginstallcmds::
|
biginstallcmds::
|
||||||
cd commands && $(MAKE) biginstall
|
cd commands && $(MAKE) biginstall
|
||||||
|
|
@ -62,6 +62,7 @@ clean::
|
||||||
cd lib && $(MAKE) $@
|
cd lib && $(MAKE) $@
|
||||||
cd contrib && $(MAKE) $@
|
cd contrib && $(MAKE) $@
|
||||||
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
|
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
|
||||||
|
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) clean; fi
|
||||||
|
|
||||||
etcfiles::
|
etcfiles::
|
||||||
cd etc && $(MAKE) install
|
cd etc && $(MAKE) install
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,11 @@
|
||||||
|
|
||||||
all install clean:
|
EMACS=emacs-21.4
|
||||||
cd emacs-21.4 && $(MAKE) $@
|
LYNX=lynx2-8-5
|
||||||
cd lynx2-8-5 && $(MAKE) $@
|
|
||||||
|
#-[ -f $(EMACS)/Makefile ] && cd $(EMACS) && $(MAKE) $@
|
||||||
|
|
||||||
|
all install::
|
||||||
|
cd $(LYNX) && sh MINIX/lynx.sh && bigmake $@
|
||||||
|
|
||||||
|
all install clean::
|
||||||
|
if [ -f $(LYNX)/Makefile ] ; then cd $(LYNX) && bigmake $@; fi
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ ISO=minix.iso
|
||||||
ISOGZ=minix.iso.gz
|
ISOGZ=minix.iso.gz
|
||||||
RAM=/dev/ram
|
RAM=/dev/ram
|
||||||
BS=4096
|
BS=4096
|
||||||
USRMB=150
|
USRMB=350
|
||||||
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
|
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
|
||||||
ROOTMB=2
|
ROOTMB=2
|
||||||
ROOTBLOCKS="`expr $ROOTMB \* 1024 \* 1024 / $BS`"
|
ROOTBLOCKS="`expr $ROOTMB \* 1024 \* 1024 / $BS`"
|
||||||
|
|
@ -76,12 +76,15 @@ do
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
h)
|
h)
|
||||||
|
echo " * Making HD image"
|
||||||
HDEMU=1
|
HDEMU=1
|
||||||
;;
|
;;
|
||||||
c)
|
c)
|
||||||
|
echo " * Copying, not CVS"
|
||||||
COPY=1
|
COPY=1
|
||||||
;;
|
;;
|
||||||
a)
|
a)
|
||||||
|
echo " * Including contrib"
|
||||||
ALL=1
|
ALL=1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
@ -168,6 +171,12 @@ echo " * Transfering source to $RELEASEDIR"
|
||||||
|
|
||||||
( cd $srcdir && tar cf - . ) | ( cd $RELEASEDIR/usr && mkdir src && cd src && tar xf - )
|
( cd $srcdir && tar cf - . ) | ( cd $RELEASEDIR/usr && mkdir src && cd src && tar xf - )
|
||||||
|
|
||||||
|
if [ "$ALL" = 0 ]
|
||||||
|
then echo " * Removing temporary cvs source tree"
|
||||||
|
rm -rf src
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo " * Fixups for owners and modes of dirs and files"
|
||||||
chown -R bin $RELEASEDIR/usr/src
|
chown -R bin $RELEASEDIR/usr/src
|
||||||
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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user