Browse Source

Use RACK_DIR in plugins Makefile framework

tags/v0.6.0
Andrew Belt 6 years ago
parent
commit
2ef317859d
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      plugin.mk

+ 5
- 5
plugin.mk View File

@@ -1,14 +1,14 @@
# All paths here assume the PWD is plugin/something
RACK_DIR ?= ../..

FLAGS += -fPIC \
-I../../include -I../../dep/include
-I$(RACK_DIR)/include -I$(RACK_DIR)/dep/include

ifdef SLUG
FLAGS += -DSLUG=$(SLUG)
endif


include ../../arch.mk
include $(RACK_DIR)/arch.mk

ifeq ($(ARCH), lin)
LDFLAGS += -shared
@@ -21,7 +21,7 @@ ifeq ($(ARCH), mac)
endif

ifeq ($(ARCH), win)
LDFLAGS += -shared -L../../ -lRack
LDFLAGS += -shared -L$(RACK_DIR) -lRack
TARGET = plugin.dll
endif

@@ -30,7 +30,7 @@ DISTRIBUTABLES += $(TARGET)

all: $(TARGET)

include ../../compile.mk
include $(RACK_DIR)/compile.mk

clean:
rm -rfv build $(TARGET) dist


Loading…
Cancel
Save