Makefile (861B)
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_embedextui 11 12 # -------------------------------------------------------------- 13 # Files to build 14 15 FILES_DSP = \ 16 EmbedExternalExamplePlugin.cpp 17 18 FILES_UI = \ 19 EmbedExternalExampleUI.cpp 20 21 # -------------------------------------------------------------- 22 # Do some magic 23 24 UI_TYPE = external 25 include ../../Makefile.plugins.mk 26 27 ifeq ($(MACOS),true) 28 BUILD_CXX_FLAGS += -ObjC++ 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 TARGETS += vst3 39 40 all: $(TARGETS) 41 42 # --------------------------------------------------------------