mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-26 23:38:10 -05:00
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@862 0778d3d1-df1d-0410-868b-ea421aaaa00d
41 lines
899 B
Makefile
41 lines
899 B
Makefile
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
|
|
INCLUDES = -I/usr/include/festival -I/usr/include/speech_tools \
|
|
-I$(top_srcdir)/include -I$(top_srcdir)/src/gui -I.
|
|
|
|
|
|
CXXFLAGS += -Wno-non-template-friend
|
|
|
|
AM_CXXFLAGS := $(AM_CXXFLAGS) $(QT_CXXFLAGS) -DPLUGIN_NAME="singerbot"
|
|
|
|
|
|
%.moc: ./%.h
|
|
$(MOC) -o $@ $<
|
|
|
|
|
|
MOC_FILES = ./singerbot.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 = libsingerbot.la
|
|
|
|
libsingerbot_la_SOURCES = singerbot.cpp singerbot.h file.h
|
|
|
|
$(libsingerbot_la_SOURCES): ./embedded_resources.h
|
|
|
|
pkglib_PROGRAMS = singerbot_proxy
|
|
singerbot_proxy_SOURCES = singerbot_proxy.cpp
|
|
singerbot_proxy_LDFLAGS = -lFestival -lestools -lestbase -lesd -lncurses -lrt
|