mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-20 15:03:05 -04:00
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms-mv@665 0778d3d1-df1d-0410-868b-ea421aaaa00d
46 lines
899 B
Makefile
46 lines
899 B
Makefile
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
if SHIP_CAPS
|
|
SUBDIRS = caps
|
|
endif
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src/lib -I.
|
|
|
|
|
|
AM_CXXFLAGS := $(AM_CXXFLAGS) $(QT_CXXFLAGS) -DPLUGIN_NAME="ladspaeffect"
|
|
|
|
|
|
%.moc: ./%.h
|
|
$(MOC) -o $@ $<
|
|
|
|
|
|
MOC_FILES = ./ladspa_controls.moc
|
|
|
|
|
|
BUILT_SOURCES = $(MOC_FILES) ./embedded_resources.h
|
|
EMBEDDED_RESOURCES = $(wildcard *png)
|
|
|
|
./embedded_resources.h: $(EMBEDDED_RESOURCES)
|
|
$(BIN2RES) $(EMBEDDED_RESOURCES) > $@
|
|
|
|
EXTRA_DIST = $(EMBEDDED_RESOURCES)
|
|
|
|
|
|
CLEANFILES = $(MOC_FILES) ./embedded_resources.h
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = libladspaeffect.la
|
|
|
|
libladspaeffect_la_SOURCES = ladspa_effect.cpp \
|
|
ladspa_controls.cpp \
|
|
ladspa_control_dialog.cpp \
|
|
ladspa_subplugin_features.cpp \
|
|
ladspa_effect.h \
|
|
ladspa_controls.h \
|
|
ladspa_control_dialog.h \
|
|
ladspa_subplugin_features.h
|
|
|
|
$(libladspaeffect_la_SOURCES): ./embedded_resources.h
|