bootstrap-make.sh (319B)
- #!/bin/sh
- set -ex
- P="make-4.4.1"
- gzip -d -k /${P}.tar.gz
- tar xof /${P}.tar
- cd ./$P
- export LD="tcc"
- ./configure --prefix=/usr --disable-nls --disable-dependency-tracking
- pdpmake clean
- # ARFLAGS as otherwise it passes -o which is invalid
- pdpmake ARFLAGS='-r'
- pdpmake install INSTALL=install
- cd ..
- rm -r ./$P /${P}.tar