Skip to content

Commit

Permalink
move library path to LDLIBS
Browse files Browse the repository at this point in the history
  • Loading branch information
arowser authored and rustyrussell committed Feb 23, 2018
1 parent ae6b901 commit 73fab9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ CWARNFLAGS := -Werror -Wall -Wundef -Wmissing-prototypes -Wmissing-declarations
CDEBUGFLAGS := -std=gnu11 -g -fstack-protector
CFLAGS = $(CPPFLAGS) $(CWARNFLAGS) $(CDEBUGFLAGS) -I $(CCANDIR) $(EXTERNAL_INCLUDE_FLAGS) -I . -I/usr/local/include $(FEATURES) $(COVFLAGS) $(DEV_CFLAGS) -DSHACHAIN_BITS=48 -DJSMN_PARENT_LINKS $(PIE_CFLAGS)

LDFLAGS = -L/usr/local/lib $(PIE_LDFLAGS)
LDLIBS = -lm -lgmp -lsqlite3 $(COVFLAGS)
LDFLAGS = $(PIE_LDFLAGS)
LDLIBS = -L/usr/local/lib -lm -lgmp -lsqlite3 $(COVFLAGS)

default: all-programs all-test-programs

Expand Down

0 comments on commit 73fab9e

Please sign in to comment.