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

Annotation of /gigedit/trunk/src/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1213 - (hide annotations) (download)
Wed May 30 00:14:05 2007 UTC (16 years, 10 months ago) by schoenebeck
File size: 807 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 schoenebeck 1213 if HAVE_LINUXSAMPLER
2     optional_subdirs = plugin
3     else
4     optional_subdirs =
5     endif
6    
7     SUBDIRS = $(optional_subdirs)
8    
9     AM_CPPFLAGS = $(GTKMM_CFLAGS) $(GIG_CFLAGS)
10     DEFS = -DLOCALEDIR=\"$(datadir)/locale\" @DEFS@
11    
12     pkglib_LTLIBRARIES = libgigedit.la
13     libgigedit_la_SOURCES = \
14     gigedit.cpp gigedit.h \
15 persson 1052 mainwindow.cpp mainwindow.h \
16     regionchooser.cpp regionchooser.h \
17 persson 1100 dimregionchooser.cpp dimregionchooser.h \
18     dimregionedit.cpp dimregionedit.h \
19 schoenebeck 1107 paramedit.cpp paramedit.h \
20     dimensionmanager.cpp dimensionmanager.h
21 schoenebeck 1213 libgigedit_la_LIBADD = \
22     $(GTKMM_LIBS) $(GIG_LIBS) $(SNDFILE_LIBS)
23     libgigedit_la_CXXFLAGS = \
24     $(SNDFILE_CFLAGS)
25     libgigedit_la_LDFLAGS = \
26     -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@
27 persson 1052
28 schoenebeck 1213 bin_PROGRAMS = gigedit
29     gigedit_SOURCES = main.cpp
30     gigedit_LDADD = \
31     $(top_builddir)/src/libgigedit.la

  ViewVC Help
Powered by ViewVC