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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 497 - (show annotations) (download)
Sun Apr 10 11:55:44 2005 UTC (18 years, 11 months ago) by persson
File size: 804 byte(s)
* removed some build warnings
* fixed a bug with hanging notes when using sustain pedal
* release samples are not triggered anymore when sustain pedal is down

1 INCLUDES = $(all_includes)
2 METASOURCES = AUTO
3
4 AM_CXXFLAGS = -ffast-math -march=$(target_cpu)
5
6 if HAVE_SQLITE3
7 sqlite3_lflags = $(SQLITE3_LIBS)
8 else
9 sqlite3_lflags =
10 endif
11
12 noinst_LTLIBRARIES = liblinuxsamplernetwork.la
13 liblinuxsamplernetwork_la_SOURCES = lscp.h lscpparser.cpp lscpparser.h lscpserver.cpp lscpserver.h lscpsymbols.h lscpresultset.cpp lscpresultset.h lscpevent.cpp lscpevent.h lscpinstrumentloader.cpp
14 liblinuxsamplernetwork_la_LIBADD = $(sqlite3_lflags)
15
16 .PHONY: parser
17
18 # generate parser with lex and yacc
19 parser:
20 @echo "Generating LSCP parser..."
21 @if which "yacc" > /dev/null; then \
22 yacc -d lscp.y && \
23 yacc lscp.y && \
24 mv -f y.tab.h lscpsymbols.h && \
25 mv -f y.tab.c lscpparser.cpp; \
26 else \
27 echo "You need yacc (or bison) to generate the parser."; \
28 fi;

  ViewVC Help
Powered by ViewVC