From 6013ca23572c834309396ded6720b67da9037388 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 7 Apr 2016 01:58:06 +0200 Subject: [PATCH] Change STATIC_LINKING ifdef --- Makefile.common | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 3a5c211..fd3b566 100644 --- a/Makefile.common +++ b/Makefile.common @@ -29,7 +29,8 @@ SOURCES_C += \ $(CORE_DIR)/video.c \ $(CORE_DIR)/vsuni.c -ifneq ($(STATIC_LINKING),1) +ifeq ($(STATIC_LINKING),1) +else SOURCES_C += $(CORE_DIR)/memstream.c endif