From 907c96b164ae7d9fd54ae8e4c6eb245348200a4f Mon Sep 17 00:00:00 2001 From: Marco De Donno Date: Mon, 14 Aug 2023 22:16:03 +0200 Subject: [PATCH] Add missing math library as LDFLAG --- examples/simple/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple/Makefile b/examples/simple/Makefile index f075570..f454b45 100644 --- a/examples/simple/Makefile +++ b/examples/simple/Makefile @@ -1,6 +1,6 @@ CC = gcc CFLAGS = -pedantic -Wall -g -I../.. -I../../src -I/usr/local/include -LDFLAGS = -L../.. -L/usr/local/lib -lspnav -lX11 +LDFLAGS = -L../.. -L/usr/local/lib -lspnav -lX11 -lm .PHONY: all all: simple_x11 simple_af_unix