14 lines
319 B
Bash
14 lines
319 B
Bash
#!/bin/sh
|
|
# Configuration script for GNU CC
|
|
# The standard config.gcc is too big for MINIX unless
|
|
# you do cute things so we just do it all directly
|
|
|
|
ln config/xm-minix386.h config.h
|
|
ln config/tm-minix386.h tm.h
|
|
ln config/i386.md md
|
|
ln config/out-i386.c aux-output.c
|
|
touch config.status
|
|
|
|
echo Set up for MINIX-386
|
|
|