You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | #!/usr/bin/make -f
# Makefile for DISTRHO Plugins #
# ---------------------------- #
# Created by falkTX
#
# --------------------------------------------------------------
# Project name, used for binaries
NAME = d_embedextui
# --------------------------------------------------------------
# Files to build
FILES_DSP = \
	EmbedExternalExamplePlugin.cpp
FILES_UI  = \
	EmbedExternalExampleUI.cpp
# --------------------------------------------------------------
# Do some magic
USE_WEB_VIEW = true
UI_TYPE = external
include ../../Makefile.plugins.mk
# --------------------------------------------------------------
# Enable all possible plugin types
TARGETS += jack
TARGETS += dssi
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
all: $(TARGETS)
# --------------------------------------------------------------
 |