Fix missing linking option

This commit is contained in:
ben
2025-11-14 23:04:39 +01:00
parent 1d85325bb3
commit 69f43babec

View File

@@ -1,20 +1,20 @@
CC=gcc
CFLAGS=-Wall -Werror -pthread -O3
CFLAGS=-Wall -Werror -pthread -O3 -lm
LDFLAGS=
default: inexact
windows: CC=x86_64-w64-mingw32-gcc
windows: CFLAGS=-Wall -Werror -pthread -O3
windows: CFLAGS=-Wall -Werror -pthread -O3 -lm
windows: LDFLAGS=
windows: inexact
windows-debug: CC=x86_64-w64-mingw32-gcc
windows-debug: CFLAGS=-Wall -Werror -pthread -O3 -g
windows-debug: CFLAGS=-Wall -Werror -pthread -O3 -g -lm
windows-debug: LDFLAGS=
windows-debug: inexact
debug: CFLAGS=-Wall -Werror -pthread -O3 -g
debug: CFLAGS=-Wall -Werror -pthread -O3 -g -lm
debug: LDFLAGS=
debug: inexact