DPF

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

Makefile (824B)


      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_files
     11 
     12 # --------------------------------------------------------------
     13 # Files to build
     14 
     15 FILES_DSP = \
     16 	FileHandlingPlugin.cpp
     17 
     18 FILES_UI = \
     19 	FileHandlingUI.cpp \
     20 	NanoButton.cpp
     21 
     22 # --------------------------------------------------------------
     23 # Do some magic
     24 
     25 include ../../Makefile.plugins.mk
     26 
     27 # --------------------------------------------------------------
     28 # Enable all possible plugin types
     29 
     30 ifeq ($(HAVE_OPENGL),true)
     31 TARGETS += jack
     32 TARGETS += lv2_sep
     33 else
     34 TARGETS += lv2_dsp
     35 endif
     36 
     37 TARGETS += vst2
     38 TARGETS += vst3
     39 
     40 all: $(TARGETS)
     41 
     42 # --------------------------------------------------------------