From f299c6965408bd8942e1f3acc38f0b7eb00bf24f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 25 Aug 2021 21:41:06 +0200 Subject: [PATCH] Fix error in Makefile : forget for variable in if condition --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index acea3de..3c2d57b 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,10 @@ BUILD_STATIC ?= 0 BUILD_SHARED ?= 1 TARGETS = -ifneq (BUILD_STATIC, 0) +ifneq ($(BUILD_STATIC), 0) TARGETS += libupdfparser.a endif -ifneq (BUILD_SHARED, 0) +ifneq ($(BUILD_SHARED), 0) TARGETS += libupdfparser.so endif