fix builds not to do bigmakes

gzip is out of the base system
This commit is contained in:
Ben Gras 2006-02-02 17:13:07 +00:00
parent ac71ad109e
commit 1bec73d61c
4 changed files with 6 additions and 8 deletions

View file

@ -2,7 +2,6 @@
MAKE = exec make -$(MAKEFLAGS)
FLEX=flex-2.5.4
GZIP=gzip-1.2.4
BZIP2=bzip2-1.0.3
NVI=nvi-1.79
NVIWORK=$(NVI)/minix
@ -28,11 +27,9 @@ install: biginstall smallinstall
small::
-mkdir $(NVIWORK)
cd $(GZIP) && CC="$(CC)" /bin/sh ./configure --prefix=/usr/local && $(MAKE) all
cd $(NVI) && make all
smallinstall:: small
cd $(GZIP) && $(MAKE) install
cd $(NVI) && make install
big:
@ -45,7 +42,6 @@ biginstall: big
clean::
if [ -f $(FLEX)/Makefile ] ; then cd $(FLEX) && make $@; fi
if [ -f $(GZIP)/Makefile ] ; then cd $(GZIP) && make $@; fi
cd $(BZIP2) && make clean
if [ -f $(NVIWORK)/Makefile ]; then cd $(NVIWORK) && make clean; fi
for p in $(SMALLPROGRAMS); do ( cd $$p && make clean ); done

View file

@ -1,6 +1,6 @@
#!/bin/sh
make clean
bigmake all
make all
if [ "$1" != build ]
then make install
fi

View file

@ -1,5 +1,5 @@
#!/bin/sh
CC=cc /bin/sh ./configure --prefix=/usr/local && bigmake all
if [ $1 != build ]
CC=cc /bin/sh ./configure --prefix=/usr/local && make all
if [ "$1" != build ]
then make install
fi

View file

@ -1,3 +1,5 @@
#!/bin/sh
set -e
make clean
make && make install
make
make install