fix math lib location in linker cmd
Stefan Schuermans

Stefan Schuermans commited on 2016-09-04 11:52:52
Showing 1 changed files, with 2 additions and 2 deletions.


problem found during preparation of "Solinger Lichterfest 2016"
  together with "Dr Stahl" at "zWerkstatt"
... ...
@@ -9,8 +9,8 @@ BLINKENLIB_LIB_DIR = /usr/local/lib
9 9
 
10 10
 CC = gcc
11 11
 CFLAGS = -W -Wall -I$(BLINKENLIB_INCLUDE_DIR) -O2
12
-LFLAGS = -lm -L$(BLINKENLIB_LIB_DIR)
13
-LIBS = -lBlinkenLib
12
+LFLAGS = -L$(BLINKENLIB_LIB_DIR)
13
+LIBS = -lBlinkenLib -lm
14 14
 
15 15
 all: blue_dist
16 16
 
17 17