DPF

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

Makefile (952B)


      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_meters
     11 
     12 # --------------------------------------------------------------
     13 # Files to build
     14 
     15 FILES_DSP = \
     16 	ExamplePluginMeters.cpp
     17 
     18 FILES_UI  = \
     19 	ExampleUIMeters.cpp
     20 
     21 # --------------------------------------------------------------
     22 # Do some magic
     23 
     24 include ../../Makefile.plugins.mk
     25 
     26 # --------------------------------------------------------------
     27 # Enable all possible plugin types
     28 
     29 ifeq ($(HAVE_OPENGL),true)
     30 
     31 TARGETS += jack
     32 
     33 ifneq ($(MACOS_OR_WINDOWS),true)
     34 ifeq ($(HAVE_LIBLO),true)
     35 TARGETS += dssi
     36 endif # HAVE_LIBLO
     37 endif # MACOS_OR_WINDOWS
     38 
     39 TARGETS += lv2_sep
     40 TARGETS += vst2
     41 TARGETS += vst3
     42 TARGETS += clap
     43 TARGETS += au
     44 
     45 endif # HAVE_OPENGL
     46 
     47 all: $(TARGETS)
     48 
     49 # --------------------------------------------------------------