make.sh (251B)
- #!/bin/sh
- set -ex
- cd /extras/make-*/
- 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 -