# HG changeset patch # User David Demelier # Date 1624264263 -7200 # Node ID 8aca32f4af1d00a5797bae0eb159b94fab5dc73f # Parent c4efc23a63835576f05ced4aa22402ade1cfa0fb make: remove spaces diff -r c4efc23a6383 -r 8aca32f4af1d GNUmakefile --- a/GNUmakefile Mon Jun 21 10:30:49 2021 +0200 +++ b/GNUmakefile Mon Jun 21 10:31:03 2021 +0200 @@ -156,25 +156,25 @@ endif # Include directories. -INCS= -I lib/ -INCS+= -I ./ -INCS+= -I extern/libgreatest/ -INCS+= -I extern/libketopt/ +INCS= -Ilib/ +INCS+= -I./ +INCS+= -Iextern/libgreatest/ +INCS+= -Iextern/libketopt/ INCS+= $(shell pkg-config --cflags libbsd-overlay) ifeq (${SSL},1) INCS+= $(shell pkg-config --cflags openssl) endif ifeq (${JS},1) -INCS+= -I extern/libduktape +INCS+= -Iextern/libduktape endif # Whole libraries for every binaries. -LIBS+= -l pthread -LIBS+= -l m +LIBS+= -lpthread +LIBS+= -lm ifeq (${OS},Linux) -LIBS+= -l dl +LIBS+= -ldl CFLAGS+= -fPIC endif