DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

Makefile (894B)


      1 #!/usr/bin/make -f
      2 # Makefile for DISTRHO Plugins #
      3 # ---------------------------- #
      4 # Created by falkTX
      5 #
      6 
      7 # --------------------------------------------------------------
      8 # Project name, used for binaries
      9 
     10 NAME = d_info
     11 
     12 # --------------------------------------------------------------
     13 # Files to build
     14 
     15 FILES_DSP = \
     16 	InfoExamplePlugin.cpp
     17 
     18 FILES_UI = \
     19 	InfoExampleUI.cpp
     20 
     21 # require for modgui builds
     22 MODGUI_CLASS_NAME = distrho_examples_info
     23 
     24 # --------------------------------------------------------------
     25 # Do some magic
     26 
     27 include ../../Makefile.plugins.mk
     28 
     29 # --------------------------------------------------------------
     30 # Enable all possible plugin types
     31 
     32 ifeq ($(HAVE_OPENGL),true)
     33 TARGETS += jack
     34 endif # HAVE_OPENGL
     35 
     36 TARGETS += lv2_sep
     37 TARGETS += vst2
     38 TARGETS += vst3
     39 TARGETS += clap
     40 TARGETS += au
     41 
     42 all: $(TARGETS)
     43 
     44 # --------------------------------------------------------------