From 11ec7f08e48caadf1b219aeb56a60861e6df97bb Mon Sep 17 00:00:00 2001 From: karl Date: Mon, 27 Apr 2015 11:47:37 +0200 Subject: [PATCH] changed LDFLAGS to LDLIBS would not use the libraries otherwise --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 568b6ea..df95bba 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ CC = gcc CFLAGS = -Wall -Wextra CPPFLAGS = -LDFLAGS = -lasound -lm -lfftw3 -lpthread +LDLIBS = -lasound -lm -lfftw3 -lpthread INSTALL = install INSTALL_BIN = $(INSTALL) -D -m 755