From: kazu Date: Thu, 2 May 2024 08:22:03 +0000 (+0000) Subject: Forgot to add `-lm` X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=dba4cd60464f602e5bb4f1f4d003e556f4deb04f;p=ksynth.git Forgot to add `-lm` git-svn-id: file:///raid/svn-main/kazu-ksynth/trunk@35 7b47e76f-e598-2f43-bc14-414d160cc389 --- diff --git a/Makefile b/Makefile index 8575629..eb274a1 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # $Id$ CC := gcc -CFLAGS := -D_POSIX_C_SOURCE=199309L -std=c99 -ffast-math +CFLAGS := -D_POSIX_C_SOURCE=199309L -std=c99 -ffast-math -lm ifeq ($(DEBUG),YES) CFLAGS += -g endif