blob: a1a2a73ed805226219af3e04cbb7ca7c8b633484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# /bin/cc is hopelessly broken, so we must use /bin/gcc instead.
CC = $(OLDCC)
OLDCC = /bin/gcc
# /bin/sh is too buggy, so use /bin/bash instead.
SHELL = /bin/bash
# Show we need to use the C version of ALLOCA
ALLOCA=alloca.o
# configuration for IBM rs6000 running lynx
# For some reason, we need -lm for cc1.
CLIB=-lm
|