#!/usr/bin/make -f # Makefile for carla-plugin # # ------------------------- # # Created by falkTX # include ../Makefile.mk # -------------------------------------------------------------- BUILD_CXX_FLAGS += $(shell pkg-config --cflags liblo QtCore QtGui) LINK_FLAGS += $(shell pkg-config --libs liblo QtCore QtGui) # -------------------------------------------------------------- ifeq ($(HAVE_FLUIDSYNTH),true) BUILD_CXX_FLAGS += $(shell pkg-config --cflags fluidsynth) LINK_FLAGS += $(shell pkg-config --libs fluidsynth) endif ifeq ($(HAVE_LINUXSAMPLER),true) BUILD_CXX_FLAGS += $(shell pkg-config --cflags linuxsampler) LINK_FLAGS += $(shell pkg-config --libs linuxsampler) endif # -------------------------------------------------------------- OBJS = \ CarlaPlugin.cpp.o \ CarlaPluginThread.cpp.o \ BridgePlugin.cpp.o \ NativePlugin.cpp.o \ LadspaPlugin.cpp.o \ DssiPlugin.cpp.o \ Lv2Plugin.cpp.o \ VstPlugin.cpp.o \ Vst3Plugin.cpp.o \ FluidSynthPlugin.cpp.o \ LinuxSamplerPlugin.cpp.o SHARED = ../libcarla_plugin.so STATIC = ../libcarla_plugin.a # -------------------------------------------------------------- all: $(STATIC) clean: rm -f $(OBJS) $(SHARED) $(STATIC) debug: $(MAKE) DEBUG=true # -------------------------------------------------------------- %.cpp.o: %.cpp ../CarlaBackend.hpp ../CarlaEngine.hpp ../CarlaPlugin.hpp CarlaPluginInternal.hpp CarlaPluginThread.hpp $(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ $(SHARED): $(OBJS) $(CXX) $^ -shared $(LINK_FLAGS) -o $@ $(STATIC): $(OBJS) $(AR) rs $@ $^