changeset 1061:8aca32f4af1d

make: remove spaces
author David Demelier <markand@malikania.fr>
date Mon, 21 Jun 2021 10:31:03 +0200
parents c4efc23a6383
children 7bc2e8fac3dc
files GNUmakefile
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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