Explicitly set the `make` compiler to `cc`.

This makes it work out of the box on GNU systems where GNU make defaults
to c99, which doesn't accept -std=c89.
This commit is contained in:
Jordan Bancino 2023-11-01 11:25:32 -04:00
parent 03fe5ca355
commit 6ab1c7919b
1 changed files with 1 additions and 0 deletions

1
configure vendored
View File

@ -195,6 +195,7 @@ cat << EOF > Makefile
# Generated by '$0' on $(date).
# This file should generally not be manually edited.
CC = cc
PREFIX = ${PREFIX}
CFLAGS = ${CFLAGS}
LDFLAGS = ${LDFLAGS}