From d2138ce263cb520461b8c5c948b270a94c6816f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hinderer?= Date: Mon, 19 Dec 2016 14:57:09 +0100 Subject: [PATCH] Build PIC libraries only under Unix This makes things closer to what they were before, since PIC objects were not built for Windows. --- asmrun/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/asmrun/Makefile b/asmrun/Makefile index d4fcc1aeb240..dbab4142eb96 100644 --- a/asmrun/Makefile +++ b/asmrun/Makefile @@ -100,9 +100,11 @@ ifeq "$(PROFILING)" "true" TARGETS += libasmrunp.$(A) endif +ifeq "$(UNIX_OR_WIN32)" "unix" ifeq "$(SUPPORTS_SHARED_LIBRARIES)" "true" TARGETS += libasmrun_pic.$(A) libasmrun_shared.$(SO) endif +endif .PHONY: all all: $(TARGETS)