From 7997fbfedc9752cd9722181aa927c5d434ac93a5 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 27 Aug 2017 22:51:55 -0400 Subject: [PATCH] Update plugin Makefile --- plugin.mk | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugin.mk b/plugin.mk index a1ea6390..b1f3e0eb 100644 --- a/plugin.mk +++ b/plugin.mk @@ -1,24 +1,24 @@ # All paths here assume the PWD is plugin/something FLAGS += -fPIC \ - -I../../include + -I../../include -I../../dep/include include ../../arch.mk ifeq ($(ARCH), lin) -LDFLAGS += -shared -TARGET = plugin.so + LDFLAGS += -shared + TARGET = plugin.so endif ifeq ($(ARCH), mac) -LDFLAGS += -shared -undefined dynamic_lookup -TARGET = plugin.dylib + LDFLAGS += -shared -undefined dynamic_lookup + TARGET = plugin.dylib endif ifeq ($(ARCH), win) -LDFLAGS += -shared -L../../ -lRack -TARGET = plugin.dll + LDFLAGS += -shared -L../../ -lRack + TARGET = plugin.dll endif