Obscure bug when using OpenBSD make

This commit is contained in:
Jordan Bancino 2022-11-20 01:40:55 +00:00
parent 2293b57b88
commit 845658e0ac
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@
: "${INCLUDES:=-Isrc/include}"
: "${CC:=cc}"
: "${CFLAGS:=-Wall -Wextra -pedantic -std=c89 -O3 $DEFINES $INCLUDES}"
: "${CFLAGS:=-Wall -Wextra -pedantic -std=c89 -O3}"
: "${LDFLAGS:=-lm -pthread -static -flto -fdata-sections -ffunction-sections -s -Wl,-static -Wl,-gc-sections}"
: "${PROG:=telodendria}"
: "${PREFIX:=/usr/local}"
CFLAGS="${CFLAGS} ${DEFINES} ${INCLUDES}"
. "$(pwd)/tools/lib/common.sh"