Skip to content

Commit

Permalink
Move library flag to appropriate variable
Browse files Browse the repository at this point in the history
  • Loading branch information
dspinellis committed Mar 31, 2024
1 parent 41d7c1c commit 2a16fad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ LIB=-lcurl -ljansson

# Maximum configuration file size length; allocate on the stack; check errors
# Report all warnings, treat warnings as errors
CFLAGS=-DINI_MAX_LINE=2048 -DINI_USE_STACK=0 -DINI_ALLOW_REALLOC=1 -DINI_STOP_ON_FIRST_ERROR=1 -Wall -Werror -L/usr/local/lib
CFLAGS=-DINI_MAX_LINE=2048 -DINI_USE_STACK=0 -DINI_ALLOW_REALLOC=1 -DINI_STOP_ON_FIRST_ERROR=1 -Wall -Werror
LDFLAGS=-L/usr/local/lib

# Help: Set DEBUG=1 to compile with debug information.
ifdef DEBUG
Expand Down

0 comments on commit 2a16fad

Please sign in to comment.