From d21521438d6488295bcdbed45590c953ccaa5982 Mon Sep 17 00:00:00 2001 From: Marko Burjek Date: Sat, 16 Apr 2016 23:45:20 +0200 Subject: [PATCH] Fixed bug in Makefile -lm was missing --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2ee6ef..59dc027 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ GDAL_LDFLAGS = `gdal-config --libs` CC = gcc CFLAGS = -Wall -Wextra -ansi -pedantic -std=c99 -O2 $(GDAL_CFLAGS) -LDFLAGS = $(GDAL_LDFLAGS) +LDFLAGS = $(GDAL_LDFLAGS) -lm all: gdaldem_web