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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 504 - (hide annotations) (download)
Tue May 3 00:37:35 2005 UTC (18 years, 10 months ago) by schoenebeck
File size: 925 byte(s)
* removed statically included libgig sources from the LinuxSampler code
  base - you now have to compile and install libgig separately
* added -Wreturn-type gcc switch to avoid bugs with no returns on non void
  functions in future

1 schoenebeck 9 # set the include path found by configure
2     INCLUDES= $(all_includes)
3    
4 schoenebeck 504 AM_CXXFLAGS = -Wreturn-type -ffast-math -march=$(target_cpu)
5 schoenebeck 9
6 schoenebeck 202 SUBDIRS = network engines common lib testcases drivers
7 schoenebeck 53
8     pkglib_LTLIBRARIES = liblinuxsampler.la
9     liblinuxsampler_la_SOURCES = Sampler.cpp Sampler.h
10 schoenebeck 411 liblinuxsampler_la_LIBADD = \
11 schoenebeck 504 $(top_builddir)/src/network/liblinuxsamplernetwork.la \
12     $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la \
13     $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la \
14     $(top_builddir)/src/engines/liblinuxsamplerengines.la \
15     $(top_builddir)/src/drivers/liblinuxsamplerdrivers.la \
16     $(top_builddir)/src/drivers/audio/liblinuxsampleraudiodriver.la \
17     $(top_builddir)/src/drivers/midi/liblinuxsamplermididriver.la \
18 schoenebeck 411 $(top_builddir)/src/common/liblinuxsamplercommon.la
19 schoenebeck 53
20     bin_PROGRAMS = linuxsampler
21     linuxsampler_SOURCES = linuxsampler.cpp
22 schoenebeck 57 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la

  ViewVC Help
Powered by ViewVC