/[svn]/gigedit/trunk/src/plugin/Makefile.am
ViewVC logotype

Contents of /gigedit/trunk/src/plugin/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1213 - (show annotations) (download)
Wed May 30 00:14:05 2007 UTC (16 years, 10 months ago) by schoenebeck
File size: 696 byte(s)
* moved instrument editor into a shared library 'libgigedit', the 'gigedit'
  binary is now just calling that shared library
* implemented an "instrument editor plugin" for LinuxSampler to allow
  on-the-fly instrument editing within the sampler's own process
  (this is an optional feature, auto detected at compile time)

1 #TODO: retrieve plugin path from LS's pkg-config info
2 pkglibdir = /usr/lib/linuxsampler/plugins
3
4 pkglib_LTLIBRARIES = \
5 libgigeditlinuxsamplerplugin.la
6 libgigeditlinuxsamplerplugin_la_SOURCES = \
7 linuxsamplerplugin.cpp
8 libgigeditlinuxsamplerplugin_la_LIBADD = \
9 $(top_builddir)/src/libgigedit.la
10 libgigeditlinuxsamplerplugin_la_CXXFLAGS = \
11 $(LINUXSAMPLER_CFLAGS)
12 libgigeditlinuxsamplerplugin_la_LDFLAGS = \
13 -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@ \
14 $(LINUXSAMPLER_LIBS)
15
16 # if somebody knows a better solution for this, let us know!
17 $(top_builddir)/src/libgigedit.la:
18 @echo "Hack in src/plugin/Makefile.am for dependency to ../libgigedit.la"
19 (cd .. && make libgigedit.la)

  ViewVC Help
Powered by ViewVC