DPF

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

Makefile (830B)


      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_extui
     11 
     12 # --------------------------------------------------------------
     13 # Files to build
     14 
     15 FILES_DSP = \
     16 	ExternalExamplePlugin.cpp
     17 
     18 FILES_UI  = \
     19 	ExternalExampleUI.cpp
     20 
     21 # --------------------------------------------------------------
     22 # Do some magic
     23 
     24 UI_TYPE = external
     25 include ../../Makefile.plugins.mk
     26 
     27 ifneq ($(MACOS)$(HAIKU),true)
     28 LINK_FLAGS += -ldl
     29 endif
     30 
     31 # --------------------------------------------------------------
     32 # Enable all possible plugin types
     33 
     34 TARGETS += jack
     35 TARGETS += dssi
     36 TARGETS += lv2_sep
     37 TARGETS += vst2
     38 
     39 all: $(TARGETS)
     40 
     41 # --------------------------------------------------------------