From 1ea0281f1a64b10335d47fcd4dfb8bc862228d4b Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 8 Oct 2012 12:08:26 +0200 Subject: [PATCH] We need to link to -lrt, since we use the clock functions from there. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 96ff15c..21e76aa 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC=gcc CXX=g++ CXXFLAGS=-Wall -g -LDFLAGS=-lSDL -lSDL_image -lGL +LDFLAGS=-lSDL -lSDL_image -lGL -lrt # Core. OBJS=main.o util.o widgets.o effect.o effect_chain.o -- 2.39.2