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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2197 - (hide annotations) (download)
Sat Jul 2 09:55:42 2011 UTC (12 years, 9 months ago) by persson
File size: 1048 byte(s)
* AU: changed number of output channels from one stereo to 16 stereo
* VST: made it possible to build the VST plugin for Mac
* AU: link AU plugin dynamically if --disable-shared isn't specified
* minor Makefile fix for building lscpparser when build and source
  directories are separate

1 persson 1923 INCLUDES = $(all_includes) $(GIG_CFLAGS) $(SQLITE3_CFLAGS)
2 schoenebeck 35 METASOURCES = AUTO
3 schoenebeck 80
4 schoenebeck 510 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
5 schoenebeck 80
6 senoner 1502 if HAVE_WINDOWS
7     winsocket_ldflags = -lws2_32 -lole32
8     else
9     winsocket_ldflags =
10     endif
11    
12 schoenebeck 57 noinst_LTLIBRARIES = liblinuxsamplernetwork.la
13 schoenebeck 654 liblinuxsamplernetwork_la_SOURCES = \
14     lscp.h \
15     lscpparser.cpp lscpparser.h \
16     lscpserver.cpp lscpserver.h \
17     lscpsymbols.h \
18     lscpresultset.cpp lscpresultset.h \
19 schoenebeck 947 lscpevent.cpp lscpevent.h
20 senoner 1502 liblinuxsamplernetwork_la_LIBADD = $(winsocket_ldflags)
21 schoenebeck 947
22 schoenebeck 1245 yacc_sources = lscp.y
23 schoenebeck 654
24 schoenebeck 1245 EXTRA_DIST = $(yacc_sources)
25    
26     # automatically (re)generate lscpsymbols.h with bison / yacc if the
27     # yacc source file(s) have been changed
28     lscpsymbols.h: $(yacc_sources)
29 persson 2197 $(top_srcdir)/scripts/generate_parser.sh
30 schoenebeck 1245
31     # automatically (re)generate lscpparser.cpp with bison / yacc if the
32     # yacc source file(s) have been changed
33     lscpparser.cpp: $(yacc_sources)
34 persson 2197 $(top_srcdir)/scripts/generate_parser.sh
35 schoenebeck 1245
36    
37 schoenebeck 35 .PHONY: parser
38    
39 schoenebeck 1245 # "make parser" was explicitly requested
40 schoenebeck 35 parser:
41 schoenebeck 1216 $(top_builddir)/scripts/generate_parser.sh

  ViewVC Help
Powered by ViewVC