#!/usr/bin/make -f # Makefile for DISTRHO Plugins # # ---------------------------- # # Created by falkTX # # -------------------------------------------------------------- # Project name, used for binaries NAME = glBars # -------------------------------------------------------------- # Files to build FILES_DSP = \ DistrhoPluginGLBars.cpp FILES_UI = \ DistrhoUIGLBars.cpp # -------------------------------------------------------------- # Do some magic include ../../dpf/Makefile.plugins.mk # -------------------------------------------------------------- # Extra flags LINK_FLAGS += -lpthread # -------------------------------------------------------------- # Enable all possible plugin types ifeq ($(BUILD_JACK),true) ifeq ($(HAVE_JACK),true) TARGETS += jack endif endif ifeq ($(BUILD_LV2),true) TARGETS += lv2 endif ifeq ($(BUILD_VST2),true) TARGETS += vst endif all: $(TARGETS) # --------------------------------------------------------------